.login-page {
    height: 100vh;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/login-img.jpg');
}

.login-page .login-page-background {
    background: linear-gradient(0deg, #02051acf, #02051ac4), linear-gradient(50deg, rgb(255 255 255 / 39%) -1.54%, rgb(255 255 255 / 39%) 32.05%, rgb(255 255 255 / 39%) 50.26%, rgb(255 255 255 / 39%) 78.48%, rgb(255 255 255 / 39%) 106.48%) ;
}

.login_card {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0px 4px 16px 0px #0000000F;
}

.login_card .login_card_body {
    padding: 64px 40px;
}
.form-control{
    height: 56px;
}

.login_card .login_card_body .login_logo {
    height: 64px;
    width: 186px;
}

.login_toggle {
    right: 10px;
    bottom: 16px;
}

.auto_row {
    width: 50%;
}

.login-btn {
    background-color: #2B2D45;
    border-radius: 8px;
    padding: 16px 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.5px;
    color: #fff;
    border: 1px solid #2B2D45;
    transition: 0.3s all linear;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #4f516a;
    color: #fff;
}

.login_link {
    color: #17191C;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
}

.forget_head {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #101828;
    margin-bottom: 5px;
}

.forget_para {
    font-weight: 400;
    font-size: 14px;
    line-height: 17.07px;
    color: #64748B;
    margin-bottom: 10px;
}

.login_form_input {
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}

.login_form_input:focus {
    box-shadow: none;
}




@media screen and (max-width: 768px) {
    .auto_row {
        width: 100%;
    }
}