/* Login/Register Page Styling */

.lwc-login-register-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f7f3fa;
}

.lwc-login-register-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.lwc-form-column {
    flex: 1;
    max-width: 600px;
    min-width: 0;
}

/* Ensure both forms have equal width */
.lwc-login-column,
.lwc-register-column {
    width: 100%;
}

/* Adjust form wrapper widths */
.lwc-login-column .lwc-customer-login-wrapper,
.lwc-register-column .lwc-customer-registration-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* Ensure form cards have equal height appearance */
.lwc-login-column #lwc-customer-login-form,
.lwc-register-column #lwc-customer-registration-form {
    min-height: 400px;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .lwc-login-register-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .lwc-form-column {
        width: 100%;
        max-width: 600px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .lwc-login-register-wrapper {
        padding: 30px 15px;
    }
    
    .lwc-login-register-container {
        gap: 25px;
    }
}

/* Hide default WooCommerce notices on this page */
.woocommerce-account .woocommerce-notices-wrapper {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* Ensure consistent spacing */
.lwc-form-column h2 {
    margin-bottom: 20px;
}

/* Make sure both forms align at the top */
.lwc-login-register-container > .lwc-form-column {
    align-self: stretch;
}
