/* -- Contact Us -- */

.contact-form {
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
    padding: 30px 20px;
    min-height: 650px;
    background-color: #f2f4f8;
    box-shadow: 0 4px 12px rgba(5, 5, 5, .15);
    border-radius: 10px;
}
.contact-form form {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
}
.contact-form-lg {
    max-width: 1000px;
    min-height: auto;
}
.contact-form-lg form {
    max-width: 800px;
}

.contact-form h2 {
    text-align: center;
    font-size: 1.25rem;
}
.contact-form h2 + p {
    font-size: .95rem;
    text-align: center;
    margin-bottom: 30px;
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
}

.form_field_element {
    color: #111;
    background-color: #fff;
    border: none;
    font-weight: 400;
    border-radius: 0;
    font-size: .95rem;
}
.form_input_error {
    color: #EB2B1F;
    font-weight: 700;
    font-size: .85rem;
}
.form_field_wrapper {
    margin-top: 5px;
}
.form_field_wrapper:hover {
    background: none;
}
.required_field {
    width: 90% !important;
}
.required_field_element {
    font-weight: 700;
}
.form_field_select {
    background-color: #fff;
    width: 90% !important;
}
.contact-form .form_field_element::placeholder,
.contact-form .form_field_select option:first-child {
    color: #808080;
}
.form_field_textarea {
    width: 90% !important;
    resize: vertical;
}

.thank_you_center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    margin-inline: auto;
    padding-inline: 10px;
}
.thank_you_content {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(5, 5, 5, .15);
}
.form-checkmark {
    width: 85px;
    height: 85px;
    fill: green;
}
.thank_you_content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.thank_you_content p {
    font-size: .95rem;
}