

/* ================================ [01] CUSTOMER AUTH START ================================ */
.customer_auth {
    display: grid;
    align-items: center;
    justify-content: center;
}

.customer_auth .logo_customer {
    text-align: center;
    margin-top: 20px;
}

.logo_auth {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_auth_svg {
    width: 110px;
    height: 38px;
    background-image: var(--logo-url);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
    .logo_auth_svg {
        width: 100px;
        height: 34px;
        background-image: var(--logo-url);
        background-size: contain;
        background-repeat: no-repeat;
    }
}

.customer_auth .form_customer {
    border: 1px solid #dadada;
    border-radius: 6px;
    width: 350px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.customer_auth .form_customer .header_form {
    /* text-align: center; */
    margin-bottom: 13px;
}

.customer_auth .form_customer .header_form h1 {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 3px;
}

.customer_auth .form_customer .header_form p {
    font-size: 0.9em;
}

.customer_auth .form_customer .header_form p a {
    color: var(--link-color);
}

.customer_auth .form_customer .main_form form .input_pass_conf {
    margin-top: 53px;
}

.customer_auth .form_customer .main_form form .input_customer {
    height: 38px;
    margin-bottom: 35px;
}

.customer_auth .form_customer .main_form form .input_customer label {
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 2px;
}

.customer_auth .form_customer .main_form form .input_customer input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    outline: none;
    border: 1px solid #dadada;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.9em;
    color: #686363;
}

.customer_auth .form_customer .main_form form .input_customer .msg_password {
    font-size: 0.9em;
    padding: 6px 0;
    text-align: center;
    color: #555555;
}

.customer_auth .form_customer .main_form form .input_customer .msg_password i {
    color: #ff0000;
    margin-right: 4px;
}

.customer_auth .form_customer .main_form form .input_customer input:focus {
    outline: 1px solid var(--primary-color);
    border: none;
}

.customer_auth .form_customer .main_form form .btn_customer {
    height: 38px;
}

.customer_auth .form_customer .main_form form .btn_customer button {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
}

.customer_auth .form_customer .main_form form .btn_customer button:hover {
    background-color: #9cc79d;
}

.customer_auth .form_customer .footer_form {
    margin-top: 10px;
}

.customer_auth .form_customer .footer_form .forget_password a {
    font-size: 0.9em;
    color: #303357;
    text-decoration: none;
}

.customer_auth .form_customer .footer_form .forget_password a:hover {
    color: #1f8a42;
    text-decoration: underline;
}

.customer_auth .form_customer .footer_form .forget_password i {
    color: #30323a;
    margin-right: 2px;
}

.customer_auth .form_customer .footer_form .forget_password button {
    background: none;
    font-size: 0.9em;
    color: #303357;
}

.customer_auth .form_customer .footer_form .forget_password button:hover {
    color: #1f8a42;
    text-decoration: underline;
}

.customer_auth .form_customer .footer_form p {
    font-size: 0.9em;
    color: #575555;
    margin-top: 8px;
}

.customer_auth .form_customer .footer_form p a {
    color: #24417e;
    text-decoration: none;
}

.customer_auth .form_customer .footer_form p a:hover {
    color: #1f8a42;
    text-decoration: underline;
}

.terms_customer {
    border-top: 1px solid #dadada;
    text-align: center;
}

.terms_customer .policy_customer {
    margin: 15px 0;
}

.terms_customer .policy_customer ul li {
    display: inline-block;
}

.terms_customer .policy_customer ul li a {
    margin-right: 15px;
    font-size: 0.8em;
    color: #24417e;
    text-decoration: none;
}

.terms_customer .policy_customer ul li a:hover {
    color: #1f8a42;
    text-decoration: underline;
}

.terms_customer .copyright_customer {
    margin: 10px 0;
}

.terms_customer .copyright_customer p {
    font-size: 0.8em;
    color: #555555;
}
/* ================================ [01] CUSTOMER AUTH END ================================ */
