
    /* GhanaRoll Registration Form Styling (extends login form styles) 
    ghanaroll/public_html/wp-content/themes/ghanaroll/assets/css/register-form.css
    This CSS file styles the registration form to match GhanaRoll's branding.
    @package GhanaRoll
    */
.ghana-roll-register-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #EF3340; /* Red border */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ghana-roll-register-form .form-message.error {
    background: #EF3340; /* Red background for errors */
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

.ghana-roll-register-form .woocommerce-form-row {
    margin-bottom: 15px;
}

.ghana-roll-register-form label {
    color: #333;
    font-weight: bold;
}

.ghana-roll-register-form input[type="text"],
.ghana-roll-register-form input[type="email"],
.ghana-roll-register-form input[type="tel"],
.ghana-roll-register-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFD100; /* Yellow border */
    border-radius: 4px;
    font-size: 16px;
}

.ghana-roll-register-form .password-field {
    position: relative;
}

.ghana-roll-register-form .password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #EF3340; /* Red icon */
}

.ghana-roll-register-form .password-note {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.ghana-roll-register-form .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.ghana-roll-register-form .woocommerce-form__input-checkbox {
    margin-right: 8px;
}

.ghana-roll-register-form .woocommerce-form__label-for-checkbox a {
    color: #EF3340; /* Red link */
    text-decoration: none;
}

.ghana-roll-register-form .woocommerce-form__label-for-checkbox a:hover {
    text-decoration: underline;
}

.ghana-roll-register-form .woocommerce-button {
    background: #009739; /* Green button */
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.ghana-roll-register-form .woocommerce-button:hover {
    background: #00732e; /* Darker green */
}

.ghana-roll-register-form .register-link {
    text-align: center;
    margin-top: 15px;
}

.ghana-roll-register-form .register-link a {
    color: #EF3340; /* Red link */
    text-decoration: none;
    font-weight: bold;
}

.ghana-roll-register-form .register-link a:hover {
    text-decoration: underline;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .ghana-roll-register-form {
        padding: 15px;
        margin: 10px;
    }

    .ghana-roll-register-form .woocommerce-button {
        font-size: 14px;
        padding: 10px;
    }
}