/* General Form Styles */
#crfRegistrationForm {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#crfRegistrationForm div {
    margin-bottom: 15px;
}

#crfRegistrationForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#crfRegistrationForm input[type="text"],
#crfRegistrationForm input[type="email"],
#crfRegistrationForm input[type="password"],
#crfRegistrationForm select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Makes sure padding does not affect the overall width */
}

#crfRegistrationForm input[type="submit"] {
    background-color: #0056b3; /* Change to match your theme */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#crfRegistrationForm input[type="submit"]:hover {
    background-color: #004494; /* Darker shade for hover state */
}

/* Error Message Styles */
.error-message {
    color: #d8000c;
    background-color: #ffbaba;
    border-color: #d8000c;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    #crfRegistrationForm {
        width: 90%;
        padding: 10px;
    }
}
