/*
 * FILE: assets/css/pages/contact.css
 * ROLE: Styles specific to the Contact page (pages/contact.html).
 * HOW TO MODIFY: Add styles for the contact form layout, success/error messages, and validation feedback.
 * EXTENSION POINTS: None.
 */


.form-status {
    margin-top: 5px;
    font-weight: 600;
    min-height: 20px;
}

.privacy {
    font-size: .86rem;
    color: var(--muted);
    margin-top: 8px;
}

.btn-calendly {
    background: var(--link-clr);
    color: white;
    padding: 0.9rem 1.4rem;
    border-radius: 0.6rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: var(--font-serif);
}

.btn-calendly:hover {
    background: var(--btn-hover-accent);
}