/*
GPRO CSS: Divi Contact Form
Description: Moves the Divi contact form's response message below the submit button and colors validation errors red while leaving the success message untouched. Applies globally to Divi contact forms.
Classes: —
Version: 1.0
Order: 25
*/

/* Push Divi contact message below the submit button */
.et_pb_contact_form_container {
    display:        flex;
    flex-direction: column;
}

.et-pb-contact-message {
    order:      99;
    margin-top: 20px;
    color:      inherit;   /* keep success message normal */
}

/* Make ONLY validation/error text red (success stays default) */
.et-pb-contact-message .et_pb_contact_error_text,
.et-pb-contact-message .et_pb_contact_error_message,
.et-pb-contact-message ul li {
    color: #c62828;
}
