.authentication {
    min-height: 100vh;
}

.authentication .authentication-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    width: 58.33333333%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.authentication-card {
    background-color: #FFFFFF;
    margin: 1.5rem 0;
}

.authentication-card-body,
.authentication-card-header {
    padding: 1.5rem;
}

.authentication-card-header h4 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    color: #0F447A;
}

.authentication-card-header img {
    width: 220px;
}

.authentication-card-body .user-role {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.authentication-card-body .user-role-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 160px;
    height: 48px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: #0F447A;
    
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

.authentication-form .form-group {
    margin-bottom: 1rem;   
}

.authentication-form .form-label {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    margin-bottom: 0.5rem;
}

.authentication-form .form-control {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
}

.authentication-form .form-control:active,
.authentication-form .form-control:focus,
.authentication-form .form-control:focus-within {
    box-shadow: none;
    outline: none;
}

.authentication-form .forgot-password {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    color: #EB5050;
    text-decoration: none;
}

.authentication-form .show-password i {
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
    color: #666666;
}

.authentication-form .form-check-input {
    width: 1.25em;
    height: 1.25em;
}

.authentication-form .form-check-label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    color: #666666;
    cursor: pointer;
}

.authentication-form .form-check-label a {
    color: #0C4B89;
    text-decoration: underline;
}

.authentication-form .authentication-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 56px;
    border: 1px solid;
    border-radius: 10px;
    cursor: pointer;
}

.authentication-form .fill-btn {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
    border-color: #FFFFFF;
    background: #0F447A;
}

.authentication-form .outline-btn {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #0F447A;
    border-color: #0F447A;
    background: #FFFFFF;
}

.social-authentication {
    margin-top: 1rem;
}

.social-authentication p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #313131;
}

.social-authentication .social-logins {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.social-authentication .social-logins .social-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #EDF3FF;
    border-radius: 100px;
}

.digit-inputs-wrapper {
    display: flex;
    justify-content: space-between;
}

.digit-inputs-wrapper .digit-input {
    width: 56px;
    height: 64px;
    text-align: center;
    border: none;
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.12);
    appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
    font-size: 30px;
    font-weight: 700;
    color: rgba(0,0,0,.87);
}

.digit-inputs-wrapper .digit-input:disabled {
    background-color: #fff;
}

.mobile-authentication-header {
    display: none;
    overflow: hidden;
    padding-bottom: 50px;
}

.mobile-authentication-header .authentication-header-wrapper {
    background-color: transparent;
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-authentication-header .authentication-header-wrapper::before {
    content: "";
    position: absolute;
    left: -10%;
    width: 120%;
    border-radius: 100%;
    background: #0F447A;
    display: block;
    height: 200px;
    bottom: -35px;
    z-index: -1;
}

.mobile-authentication-header img {
    width: 177px;
}



@media(max-width: 987px) {
    .authentication {
        min-height: auto;
    }
    
    .authentication .authentication-cover {
        display: none;
    }
    
    .authentication-card {
        margin: 0;
    }
    
    .mobile-authentication-header {
        display: block;
    }
    
    .authentication-card-header .auth-logo {
        display: none !important;
    }
    
    .authentication-card-body, .authentication-card-header {
        padding: 0px;
    }
    
    .authentication-card-header {
        margin-bottom: 1.5rem;
    }
    
    .authentication-card-header h4 {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
    }
    
    .authentication-form .form-label {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }
    
    .dark-mobile-auth,
    .dark-mobile-auth .authentication-card{
        background-color: #0F447A;
    }
    
    .dark-mobile-auth .authentication-card {
        margin: 1.5rem;
    }
    
    .dark-mobile-auth .authentication-card-header h4 {
        color: #FFFFFF;
    }
    
    .dark-mobile-auth .authentication-card-body .user-role-btn {
        width: 128px;
        background-color: #FFFFFF;
        font-size: 14px;
        line-height: 18px;
        color: #0F447A;
        padding: 0px;
    }
    
    .dark-mobile-auth .social-authentication p {
        color: #FFFFFF;
    }
}

















