﻿@charset "UTF-8";

/* Site Form - Main Container */
.site-form {
    width: 100%;
    margin: 0;
}

.site-form form {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}

/* Headings */
.site-form h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.site-form h3 {
    width: 100%;
    font-size: 20px;
    margin: 12px 0 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ironblue);
    font-family: 'stevie-sans', sans-serif !important;
}

.site-form h4 {
    width: 100%;
    font-size: 20px;
    margin: 12px 0 5px;
    text-align: left !important;
    font-weight: 500;
    font-family: 'stevie-sans', sans-serif;
}

.site-form hr {
    width: 90%;
    margin: 12px 0 20px;
    border-top: 1px #c7c7c7 solid;
}

/* Text Elements */
.site-form .red {
    color: #D8090D;
}

.site-form label {
    margin: 0 0 0 8px;
    font-size: 1em;
    font-weight: 600;
    color: #353535;
    font-family: 'stevie-sans', sans-serif;
}

.site-form p {
    font-size: 1.25em;
    line-height: 1.5;
    color: #555;
}

/* Field Containers */
.fieldsWrap {
    margin: 0 0.5%;
}

.fieldsFlex {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
}

.singleFields {
    width: 99%;
}

.dualFields {
    width: 49%;
}

.thirdFields {
    width: 32.3%;
}

/* Instructions and Notes */
.site-form .instructions {
    font-size: 12px;
    color: #777;
    margin: 6px 0;
}

.site-form .note {
    width: 100%;
    font-size: 12px;
    font-style: italic;
    color: #777;
    text-align: center;
    margin: 0;
}

.site-form .disclaimer {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    color: #1B1B1B;
    margin: 0 0 18px 28px;
}

/* Input Fields */
.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="number"],
.site-form input[type="time"],
.site-form input[type="date"],
.site-form input[type="month"],
.site-form select {
    width: 100%;
    height: 44px;
    margin: 6px 0 20px;
    padding: 12px 10px;
    font-size: 14px;
    color: #555;
    border: 1px #ccc solid;
    background-color: var(--white);
    border-radius: 4px;
    box-sizing: border-box;
}

.site-form input[type="date"] {
    padding: 11px 10px;
}

.site-form input[type="text"]:focus,
.site-form input[type="email"]:focus,
.site-form input[type="number"]:focus,
.site-form input[type="time"]:focus,
.site-form input[type="date"]:focus,
.site-form input[type="month"]:focus,
.site-form select:focus {
    border: 1px #a5a5a5 solid;
    background-color: #f9f9f9;
}

/* Textarea */
.site-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 15px 10px 10px;
    height: 100px;
    margin: 6px 0 20px;
    font-size: 15px;
    border: 1px #ccc solid;
    background-color: var(--white);
    border-radius: 4px;
    font-family: 'stevie-sans', sans-serif;
}

.site-form textarea:focus {
    background-color: #f9f9f9;
}

/* Checkbox and Radio Fields */
.site-form .checkFields {
    margin: 6px 0 20px;
}

.site-form .checkFields fieldset {
    display: flex;
    flex-flow: row wrap;
    margin: 0 8px;
    padding: 0;
    color: #4D4D4D;
}

.site-form .checkFields fieldset legend {
    margin: 0 0 8px;
    font-size: 1em;
    font-weight: 600;
    color: #353535;
    font-family: 'stevie-sans', sans-serif;
}

.site-form .checkFields .checkbox,
.site-form .checkFields .radio {
    margin: 0 8px 8px;
    padding: 0;
    color: #4D4D4D;
}

.site-form .checkFields .checkbox label,
.site-form .checkFields .radio label {
    margin: 0 0 0 4px;
    font-size: 0.95em;
    text-transform: none;
    font-weight: 500;
}

/* Submit Button */
.site-form input[type="submit"] {
    margin: 20px auto 10px;
    padding: 14px 45px;
    font-size: 1.1875em;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    border: none;
    background: var(--ironblue);
    letter-spacing: 0.04em;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 5px;
    font-family: 'stevie-sans', sans-serif;
}

.site-form input[type="submit"]:hover {
    letter-spacing: 0.01em;
    color: var(--white);
    background: var(--black);
    cursor: pointer;
    -webkit-appearance: none;
}

/* Captcha Styles */
.CaptchaPanel {
    width: 100%;
    margin: 12px auto 0 auto !important;
    padding: 10px 0 !important;
    text-align: center;
    color: #333;
}

.CaptchaImagePanel {
    padding: 5px 0 10px 0 !important;
}

.CaptchaMessagePanel {
    font-weight: 100;
    color: #333;
    font-size: 14px;
    margin: 10px 0;
}

img.CaptchaImage {
    margin: 0 auto;
    display: block;
}

.CaptchaAnswerPanel {
    margin: 10px 0;
}

.CaptchaAnswerPanel input {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    text-indent: 0;
    box-sizing: border-box;
    border: 1px #ccc solid;
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.CaptchaWhatsThisPanel {
    margin: 10px 0;
}

.CaptchaWhatsThisPanel a {
    color: #000;
    font-size: 13px;
}

/* Form Page Buttons */
#formpage .submit-button,
#submit-btn button {
    margin: 25px auto;
    border: none;
    color: var(--nearwhite);
    background: var(--ironblue);
    padding: 14px 45px;
    font-size: 1.1875em;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 5px;
    font-family: 'stevie-sans', sans-serif;
    display: block;
}

#formpage input.submit-button:hover,
#submit-btn button:hover {
    transition: ease-out 0.3s;
    cursor: pointer;
    color: var(--white);
    background: var(--ironblue);
}

#submit-btn,
.submit-button {
    margin: 0 auto;
    text-align: center;
}

.captcha-button {
    width: 100%;
    text-align: center;
}

.include-captcha {
    display: none;
    width: 100%;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .sub-main .site-form {
        width: 100%;
        margin: 4em 0 0;
    }
    
    .fieldsWrap {
        margin: 0;
    }
    
    .singleFields {
        width: 100%;
    }
    
    .dualFields {
        width: 100%;
    }
    
    .thirdFields {
        width: 100%;
    }
    
    .site-form .checkFields .checkbox {
        width: calc(100% - 16px);
    }
}

@media screen and (max-width: 885px) {
    /* Add styles as needed */
}

@media screen and (max-width: 768px) {
    /* Add styles as needed */
}

@media screen and (max-width: 480px) {
    /* Add styles as needed */
}

@media screen and (max-width: 320px) {
    /* Add styles as needed */
}