body {
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

a, a:link, a:active, a:visited {
    color: #e16e38;
}

    a:hover {
        color: #346a9f;
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: rgb(27, 36, 42);
    font-size: 48px;
    margin: 0;
    padding: 10px 0 30px 0;
    line-height: 1.0em;
}

h2 {
    color: #346a9f;
    font-size: 30px;
    margin: 0;
    padding: 20px 0 0 0;
    line-height: 1.0em;
}

h3 {
    color: #346a9f;
    font-size: 21px;
    margin: 0;
    padding: 20px 0 0 0;
    line-height: 1.0em;
    font-weight: 400;
}

#topbar {
    background-color: #fff;
    height: 50px;
    width: 100%;
}

#header {
    padding: 40px 10px;
    background-color: #fff
}

#titlebar {
    background: #fff;
    width: 100%;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    padding: 20px 0;
}

.wrapper {
    width: 100%;
    background: #006BAC;
}
#wrapper-content {
    max-width: 1024px;
    background: #ffffff;
    margin: 0 auto;
}
#content {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.6em;
    background: #ffffff;
    margin: 0 auto;
}

    #content .padding {
        padding: 6% 2%;
        text-align: center;
    }

#footer {
    background-color: #ebebeb;
    width: 100%;
    min-height: 240px;
    margin-top: 0px;
    color: #006BAC;
    font-size: 14px;
}

    #footer .padding {
        padding: 60px 0;
    }

    #footer a {
        color: #ffffff;
    }

        #footer a:hover {
            color: #ffffff;
            text-decoration: none;
        }

.button2 {
    background: #e16e38;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-block;
}

    .button2:hover {
        background: #346a9f;
    }

    .button2 a {
        color: #fff;
        text-decoration: none;
    }

        .button2 a:hover {
            color: #fff;
            text-decoration: none;
        }

.boxedcopy {
    background: #fdf2e7;
    border-radius: 10px;
    padding: 40px;
}

.linebar {
    margin: 50px 0 20px 0;
    height: 45px;
}

form {
    /* Just to center the form on the page */
    margin: 0 auto;
    max-width: 450px;
    /* To see the outline of the form */
    padding: 20px;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    background: #f5f5f5;
}

    form div + div {
        margin-top: 1em;
    }

label {
    /* To make sure that all labels have the same size and are properly aligned */
    display: inline-block;
    width: 100px;
    text-align: right;
    color: #999;
}

input {
    /* To make sure that all text fields have the same font settings
By default, textareas have a monospace font */
    font: 1em sans-serif;
    /* To give the same size to all text fields */
    width: 200px;
    box-sizing: border-box;
    /* To harmonize the look & feel of text field border */
    border: 1px solid #999;
    border-radius: 5px;
    padding: 10px 15px;
}

    input:focus {
        /* To give a little highlight on active elements */
        border-color: #1c9bd7;
    }

.button {
    /* To position the buttons to the same position of the text fields */
    /* padding-left:90px; */ /* same size as the label elements */
}

button {
    /* This extra margin represent roughly the same space as the space
between the labels and their text fields */
    margin-left: .5em;
    padding: 10px 25px;
    border-radius: 5px;
    text-tranform: uppercase;
    background: rgb(84,130,171);
    font-size: 0.9em;
    letter-spacing: .2em;
    color: #fff;
    border: none;
}

    button:hover {
        /* This extra margin represent roughly the same space as the space
between the labels and their text fields */
        background: rgb(84, 130, 171);
    }

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .button {
        padding-left: 0px;
    }

    label {
        width: 100px;
        text-align: center;
    }
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.validation-summary-errors {
    color: #ff0000;
}

    .validation-summary-errors ul {
        list-style-type: none;
    }

.field-validation-error {
    color: #ff0000;
    display: inline-block;
}

.input-validation-error {
    color: #ff0000;
    border: 2px solid #ff0000;
}

form label.error {
    display: inline-block;
    width: 100px;
    text-align: center;
    color: #ff0000;
}

.cmxform fieldset p.error label {
    color: red;
}

div.container {
    margin: 0 auto;
    max-width: 450px;
    padding: 20px;
}

    div.container span {
        text-align: center;
        color: red;
        padding: 0 0 10px;
        display: inline-block;
    }

div.container {
    display: none
}

.container span.error {
    display: inline;
}

form.cmxform {
    width: 30em;
}

    form.cmxform label.error {
        display: block;
        margin-left: 1em;
        width: auto;
    }


