.login-page .lang {
    color: var(--primary-color);
}

.main_container.login-container {
    max-width: 760px;
    margin: 0 auto;
}

.login-container .main-heading {
    text-transform: uppercase;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(0, 0, 0, 80%);
}

.required {
    color: #FF0000;
}
.customer-account-createpassword .form.password.reset{margin: auto;}
.customer-account-createpassword .field.password .control, .customer-account-createpassword .field.confirmation .control.password_field{position: relative;}


.field .password.show,
.field .password.hide{background-repeat:no-repeat;background-position:97% 58%;width:20px;height:20px;display:inline-block;right:10px;position:absolute;top:18px;z-index:10}
.create .password.show,.login-form .password.show{background-image:url("../images/eye_icon.png")}
.create .password.hide,.login-form .password.show.hidePass{background-image:url("../images/eye_icon_cross.png")}
.password_field{position: relative;}
.create .field.password .control #password-error{order: 4;-webkit-order:4;}
.create #password-strength-meter-container{order: 3;-webkit-order:3;}
.form-group .form-control {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 10%);
    border-radius: 3px;
    background-color: #F5F2F0;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-color);
    outline: none;
    transition: border-color 0.3s;
    height: auto;width: 100%;box-sizing: border-box;

}

.form-group .form-control:focus {
    border-color: #ccc;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px !important;
    color: #666666 !important;
    cursor: pointer;
    flex-direction: row;
}

.checkbox-container input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;margin: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #C4C2C0;
    accent-color: #000;
}

.btn-primary.login-btn {
    width: 250px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 0;
    border: none !important;
    cursor: pointer;
    margin-top: 10px;
}

.forgot-password a {
    font-size: 13px;
    line-height: 23px;
    color: #666666;
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #7c7c7c;
    font-size: 16px;
    line-height: 26px;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #f0f0f0;
}

.btn-primary.login-btn{border: 1px solid transparent !important;}
.btn-primary.login-btn:hover{border: 1px solid var(--primary-color) !important;}
.divider span {
    padding: 0 15px;
}

.social-login {
    display: flex;
    gap: 20px;
}

/* .recaptcha-box {
    padding-top: 15px;
} */

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    border: 1px solid #C4C2C0;
    border-radius: 4px;
    background-color: #F5F2F0;
    font-size: 16px;
    line-height: 23px;
    color: #626160;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-social:hover {
    background-color: #eee;
}

.signup-link {
    text-align: center;
    font-size: 16px;
    line-height: 23px;
    padding-top: 10px;
    color: var(--primary-color);
}

.signup-link a {
    color: #000;
    text-decoration: none;
}





@media (min-width: 1281px) and (max-width: 1550px) {
    .login-form {
        gap: 18px;
    }

    .form-group {
        gap: 5px;
    }

    .form-group .form-control {
        padding: 12px;
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .login-form {
        gap: 15px;
    }

    .form-group label {
        font-size: 14px;
        line-height: 18px;
    }

    .form-group .form-control {
        padding: 7px;
        font-size: 14px;
        line-height: 18px;
    }

    .btn-social {
        gap: 15px;
        padding: 10px;
        font-size: 15px;
        line-height: 20px;
    }

    .signup-link {
        font-size: 15px;
        line-height: 21px;
    }

    .divider {
        font-size: 14px;
        line-height: 22px;
        margin: 15px 0;
    }
}

@media screen and (max-width: 1023px) {
    .header-mobile-left {
        display: none !important;
    }

    .form-group .form-control {
        padding: 11px;
        font-size: 14px;
        line-height: 22px;
    }

    .login-form {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .login-form {
        gap: 15px;
    }

    .form-group label {
        font-size: 14px;
        line-height: 22px;
    }


    .btn-social {
        padding: 10px;
    }

    .btn-social span {
        display: none;
    }
}