body {
    background: #ECECEC;
}

.login-agency-container {
    width: 100vw;
    height: 100vh;
    background: #fff;
}

.login-info-container {
    border-radius: 20px 0px 0px 20px;
    background-image: url('/assets/img/login_background.jpeg');
    background-color: lightgray;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: -8px 4px 16px 0px rgba(0, 0, 0, 0.25);
}

.sub-container {
    display: flex;
    height: 100vh;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    padding: 0;
    align-items: center;
}

.login-info-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

#login-form input,#forgot-form input,#change-password-form input {
    display: flex;
    width: 100%;
    padding: 14px 16px;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
}

.login-btn:hover,.forgot-btn:hover,.reset-btn:hover {
    background: rgba(9, 67, 148, 0.77);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    color: white !important;
    cursor: pointer;
}

.login-btn,.forgot-btn,.reset-btn {
    display: flex;
    width: 400px;
    height: 65px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    background: rgba(77, 147, 244, 0.40);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.37);
    color: #094394;
    font-size: 22px;
    font-weight: 600;
}

.drop-shadow {
    position: absolute;
    bottom: -120px;
    max-width: 100%;
    max-height: 111px;
}


.back-to-login {
    color: rgba(0, 0, 0, 0.50);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: flex;
}

.back-to-login:hover {
    color: rgba(0, 0, 0, 0.80);
    text-decoration: none;
}

@media (max-width: 999px) {
    .login-form-container .card-body {
        padding: 0 1rem;
    }

    .drop-shadow {
        display: none;
    }
}

@media (max-width: 768px) {
    .login-container {
        display: flex;
        justify-content: center;
    }
    .login-form-container {
        width: 100%;
        max-width: 100%;
    }
    .login-info-img {
        display: none;
    }

    .login-info-container {
        border-radius: 22px 22px 0px 0px;
    }

    .login-form-container {
        border-radius: 0px 0px 22px 22px;
    }
    #login-form input,.login-btn,#login-form > div{
        margin: 0 auto;
    }
}
@media (max-width:400px){
    .login-form-container .card-body {
        width: 100%;
        max-width: 100%;
    }
}
.date-value,
.time-value {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
}

.date-label,
.time-label {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}

.date-container {
    position: absolute;
    left: 1em;
    top: 1em;
}

.time-container {
    position: absolute;
    right: 2em;
    top: 1em;
}

.date-time-container {
    position: relative;
}
.copyright-container {
    width: 50%;
    position: absolute;
}
#login-form,#forgot-form,#change-password-form {
    display: grid;
    gap: 1em;
}
.password-container {
    max-width: unset;
  }