.contact-page {
    margin: 70px auto;
    max-width: 600px;
    text-align: center;

    .main-content {
        /* use this to move the content away from the footer */
        padding-bottom: 100px;
    }
}

.contact-box {
    color: #4B465C;
    
    h1{
        font-weight: 700;
        font-size: 32px;
        text-transform: capitalize;
        margin-bottom:  24px;
    }

    p {
        margin-bottom: 20px;
        font-size: 16px;
    }
} 

.faq-link {
    text-decoration: underline;
}

.contact-form {
    margin-top: 32px;
}

/* Field group: wraps input + error together */
.field-group {
    margin-bottom: 20px;
}

/* Red border on input wrapper when field has error */
.field-group.has-error .input-wrapper {
    border-color: #d32f2f;
}

/* Field-level error message */
.field-error {
    margin-top: 6px;
    text-align: left;
    color: #d32f2f;
    font-size: 13px;
    line-height: 1.4;
}

.field-error span {
    display: block;
}

/* Form-level (non-field) errors */
.form-errors {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: left;
}

.form-error {
    color: #c62828;
    font-size: 14px;
    margin: 0;
}

.input-wrapper{
    width: 100%;
    min-height: 56px;
    border-radius: 4px;
    border: 1px solid #DBDADE;
    display: flex;
    align-items: center;
    align-self: stretch;
    transition: border-color 0.2s ease;

    .form-input{
        width: 100%;
        outline: 0;
        padding: 1em;
        border: none;
        border-radius: 4px;

    }

}

#turnstileDiv{
    height: 65px;
}

.contact-form .button {
    margin-top: 24px;
    padding: 0;
    width: 100%;
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}

@media only screen and (max-width: 1440px) {
    .contact-page {
        margin-top: 76px;
        padding: 0 24px 40px;
    }

    .contact-form {
        margin-top: 24px;
    }
}

