/**
 * IVCE Login Customizer — WooCommerce "My Account" auth forms (EVICARE / Evidensia).
 * Loaded only on account pages. Targets the login / register / lost-password /
 * reset-password forms with the same brand language as wp-login.php.
 */

/* Card look for the auth forms. */
.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.woocommerce-ResetPassword {
    border: 1px solid #e2edf1;
    border-radius: 12px;
    padding: 26px 28px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(51, 141, 170, 0.08);
    max-width: 480px;
}
.woocommerce-account form.woocommerce-ResetPassword {
    margin: 0 auto;
}

/* Section headings. */
.woocommerce-account #customer_login h2,
.woocommerce-account .woocommerce > h2,
.woocommerce-account .u-column1 > h2,
.woocommerce-account .u-column2 > h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    color: #333333;
}

/* Inputs. */
.woocommerce-account .woocommerce-form input.input-text,
.woocommerce-account form.woocommerce-ResetPassword input.input-text {
    border: 1px solid #d6e4ea;
    border-radius: 8px;
    padding: 10px 12px;
    background: #fbfdfe;
}
.woocommerce-account .woocommerce-form input.input-text:focus,
.woocommerce-account form.woocommerce-ResetPassword input.input-text:focus {
    border-color: #338daa;
    box-shadow: 0 0 0 2px rgba(68, 184, 211, 0.22);
    outline: none;
}

/* Buttons. */
.woocommerce-account button.woocommerce-form-login__submit,
.woocommerce-account button.woocommerce-form-register__submit,
.woocommerce-account form.woocommerce-ResetPassword button.woocommerce-Button,
.woocommerce-account form.woocommerce-ResetPassword button.button {
    background: #338daa !important;
    border-color: #2b7893 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background 0.15s ease;
}
.woocommerce-account button.woocommerce-form-login__submit:hover,
.woocommerce-account button.woocommerce-form-register__submit:hover,
.woocommerce-account form.woocommerce-ResetPassword button.woocommerce-Button:hover,
.woocommerce-account form.woocommerce-ResetPassword button.button:hover {
    background: #2b7893 !important;
}

/* "Lost your password?" and other auth links. */
.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a,
.woocommerce-account .woocommerce-LostPassword a {
    color: #338daa;
}
.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a:hover,
.woocommerce-account .woocommerce-LostPassword a:hover {
    color: #00b388;
}
