.contact-us-container {
    width: 100%;
    min-height: 800px;
    margin-left: auto;
    margin-right: auto;
    background: url("../images/contact-us-background.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}


.contact-us-header {
    color: #008dff;
    margin-top: 0px;
    margin-bottom: 20px;
    padding-top: 75px;
    text-decoration: underline;
}

.contact-us-input-field {
    font-family: 'Rubik', sans-serif;
    font-size: 16pt;
    color: #008dff;
    margin-top: 10px;
    margin-bottom: 10px;

    border: 1px solid #008dff;
    padding: 10px 5px;
}

.contact-us-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

#contact_us_first_name, #contact_us_last_name, #contact_us_address_city, #contact_us_address_state, #contact_us_market, #contact_us_position {
    width: 244px;
}

#contact_us_email, #contact_us_address_street, #contact_us_message {
    width: 500px;
}

.contact-us-submit {
    background: #44b061;
    color: white;
    padding: 15px 45px;
    border: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14pt;
    text-transform: uppercase;
    float: right;
    margin-right: 1%;
    margin-bottom: 20px;
}

.contact-us-error {
    text-align: center;
    font-size: 14pt;
    font-weight: 400;
    background-color: red;
    color: yellow;

    margin-top: 0px;
    margin-bottom: 0px;

}

.thank-you-message {
    padding-top: 250px;
    font-weight: 400;
    margin-top: 0em;
    margin-bottom: 0em;
}

::-webkit-input-placeholder {
    color: rgba(0, 141, 255, 0.3);
}

:-moz-placeholder { /* Firefox 18- */
    color: rgba(0, 141, 255, 0.3);
}

::-moz-placeholder {  /* Firefox 19+ */
    color: rgba(0, 141, 255, 0.3);
}

:-ms-input-placeholder {
    color: rgba(0, 141, 255, 0.3);
}

@media only screen and (max-width: 600px) {
    #contact_us_first_name, #contact_us_last_name, #contact_us_address_city, #contact_us_address_state, #contact_us_email, #contact_us_address_street, #contact_us_message, #contact_us_market, #contact_us_position {
        width: 90%;
        margin-right: 2%;
        margin-left: 2%;
    }

    .contact-us-submit {
        margin-right: 4%;
    }
}