/*
 * SCBC Login Customizer - Custom Login Styles
 */

/* 1. Hide the default registration form and related elements */
/* Targeting common shortcode login/register forms */
.login-form-container form[action*="register"],
.login-form-container .register-form,
.login-form-container .register-link,
.login-form-container .register-message,
/* Target EAEL Registration Form Wrapper */
#eael-register-form-wrapper {
    display: none !important;
}

/* The custom button will use Elementor's classes for styling, 
   so we only need a container for margin/alignment if necessary. */
.scbc-custom-reg-button {
    text-align: center;
    margin-bottom: 10px; /* Space above the button to separate it from the form */
}

/* Ensure the custom button's link element uses the same classes as the target button */
.scbc-custom-reg-button a {
    /* We will rely on Elementor's classes for styling */
    text-decoration: none;
}

/* Optional: If the Elementor button is full width, we might need to adjust the container */
.scbc-custom-reg-button .elementor-button {
    width: 100%;
}
