
html, body {
    height: 100%;
    margin: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    line-height: 1;
    background: url(background.jpg) 50% 50% no-repeat;
    background-size: cover;
    min-height: 100%;
    font-family: "HeeboRegular", Helvetica;
    font-size: 16px;
}
.green-button {
    background-color: #85c446 !important;
    color: white !important;
    border: none !important;
    padding: 10px 15px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 14px !important;
    margin: 2px 1px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
}

/*Login form css */

.container-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    margin-bottom: 30px; 
    text-align:center;
}

    .logo img {
        width: 300px; 
    }

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    height: 100%;
}

    .login-container h1 {
        margin-bottom: 20px;
        font-size: 20px;
        color: #333;
    }

form-floating {
    position: relative;
    margin-bottom: 15px; 
}

.form-floating input {
    height: 30px; 
    padding: 8px 12px; 
    font-size: 14px; 
    border: 1px solid #ccc;
    border-radius: 4px; 
    width: 100%;
    box-sizing: border-box; 
}

.form-floating label {
    position: absolute;
    left: 12px; 
    font-size: 14px;
    color: #777;
    transition: all 0.2s;
}
    .form-floating input:focus + label,
    .form-floating input:not(:placeholder-shown) + label {
        top: -5px;
        left: 10px;
        font-size: 12px;
        color: #333;
    }

.text-danger {
    font-size: 12px;
    color: #e74c3c;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox input[type="checkbox"] {
    display: none; 
}

.checkbox label {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px; 
    padding-left: 30px; 
    cursor: pointer;
}

    .checkbox label::before {
        content: "";
        position: absolute;
        left: 0;
        width: 20px; 
        height: 20px; 
        border: 2px solid #ccc; 
        background-color: #fff; 
        border-radius: 4px; 
        transition: background-color 0.2s, border-color 0.2s;
    }

.checkbox input[type="checkbox"]:checked + label::before {
    background-color: #85c446; 
    border-color: #85c446; 
}

.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    width: 8px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#forgot-password {
    font-size: 14px;
    color: #85c446;
    text-decoration: none;
}

    #forgot-password:hover {
        text-decoration: underline;
    }

#login-submit {
    background-color: #85c446;
    border-color: #85c446;
    padding: 5px 0;
    font-size: 16px;
    width: 150px;
}

    #login-submit:hover {
        background-color: #85c446;
        border-color: #85c446;
    }

.form-control:focus {
    border-color: #ccc;
    box-shadow: none; 
}

.form-floating input:focus {
    border-color: #ccc; 
    box-shadow: none; 
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #85c446; 
}

input:focus, textarea:focus {
    outline: none; 
    border-color: #ccc;
}

.navbar {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar {
    margin-bottom: 0 !important;
}

.navbar-brand {
    color: #000 !important;
}

.nav-link {
    color: #000 !important; 
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}
.container2 {
    color: #95A5A6;
    text-align: center;
    margin-bottom: 45px;
    padding: 20px;
    line-height: 1.6;
}
