/**
 * Custom Registration Form Styles
 */

/* Required field indicator */
.required {
    color: red;
}

/* Form field spacing */
.woocommerce form .form-row {
    margin-bottom: 15px;
}

/* Custom select fields */
.woocommerce form .form-row select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Improve select dropdown styling */
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: #96588a;
    box-shadow: 0 0 5px rgba(150, 88, 138, 0.3);
}

/* Style for disabled fields */
.woocommerce form .form-row select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Error messages */
.woocommerce-error {
    border-left: 3px solid #b81c23;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: #f8d7da;
    color: #721c24;
    list-style: none;
}

/* Clear fix for form rows */
.clear {
    clear: both;
    display: block;
    width: 100%;
}

/* Login and Registration box backgrounds */
.woocommerce-account .u-column1.col-1 {
    background-color: #fffde7;
    padding: 20px;
    border-radius: 4px;
}

.woocommerce-account .u-column2.col-2 {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 4px;
}

/* Hide WooCommerce password toggle buttons */
.show-password-input {
    display: none !important;
}
