
/*
CSS Rules for client-side form validation
*/

/**
Optional message to show on error.
*/
#form-validation-message
{
    border: 1px dotted #c60404;
    background: white;
    padding: 10px;
    display: none;
}

/**
These classes are set manually in the form's HTML.
They indicate which fields are required, and additionally, if there are any
special requirements of the data to be entered.
*/
.required
{
    background: #f7f2d4;
}

/*
This class is applied to invalid, required text fields.
*/
.form-validation-invalid
{
    border: 1px dotted #c60404;
}
