/* Public Enquiry form styling — ported from the legacy webforms enquiry.css.
   Trimmed down to just what the modern form needs (the float-heavy layout
   replaced with flex/grid; the wave/parallax SVG bits not used). */

@import url(//fonts.googleapis.com/css?family=Lato:300,400);

.enquiry-shell {
    font-family: 'Raleway', 'Lato', sans-serif;
    font-size: 16px;
    color: #1f2937;
    min-height: 100vh;
    padding: 16px;
    background: #ffffff;
}

.enquiry-form {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.enquiry-form > .span-2 { grid-column: 1 / -1; }

.enquiry-field { display: flex; flex-direction: column; }
.enquiry-field > label {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 4px;
    font-weight: 600;
}

.enquiry-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.enquiry-message {
    grid-column: 1 / -1;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.92rem;
}
.enquiry-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.enquiry-message.success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }

.enquiry-contact-launcher {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}
