/* adrr-styles.css */

/* Style the main pre-registration form */
form[name="adrr_pre_register_form"] {
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
}

/* Style the input fields */
form[name="adrr_pre_register_form"] input[type="text"],
form[name="adrr_pre_register_form"] input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Shows a subtle inline hint next to the name fields */
.adrr-name-hint { color: #d63638; font-size: 12px; margin-left: 8px; }
