﻿:root {
    --main-bg-color: #206092;
    --main-fg-color: #FFFFFF;
}

/*Insures banner won't cause a scrollbar*/
body {
    overflow-x: hidden;
}

/******************* Nav ********************************************/
.hero-image {
    width: 100%;
    min-width: 1200px;
    z-index: -1;
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    margin: auto;
}

.hero-text {
    margin-top: 130px;
}

.input-label {
    text-align: left;
}

.prospectus-button {
    background: var(--main-fg-color);
    color: #254A5D;
    border: 1px solid #254A5D;
    border-radius: 8px;
    min-width: 7.5rem;
    width: auto;
    font-weight: bolder;
    letter-spacing: 1.1px;
    padding: 12px 36px;
    cursor: pointer;
}

    .prospectus-button:hover {
        background: #254A5D;
        color: var(--main-fg-color);
    }

.form {
    /*border: 1px solid #C3d0d6;*/
    border-radius: 4px;
    box-shadow: 0px 0px 6px #c3d0d6;
    margin: -60px 0px 60px 0px;
    padding: 36px;
    background: var(--main-fg-color);
    z-index: 1;
    height: 100%;
}

.form_background {
    background: #f5f8fa;
    padding: 16px;
}

.other_input_background {
    background: #f5f8fa;
}

.title_border {
    border-bottom: 2px dotted #C3D0D6;
}

.form_input {
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #F5F8FA;
}

.form_input_gray {
    margin-bottom: 8px;
    border-bottom: 1px solid #9487B0;
}

.form_input-error {
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 2px solid #F5F8FA;
    border-color: #da2e4e;
}

.form_input:hover {
    border-color: #51626F;
}

.form_input:active, .form_input:focus {
    border-color: #009FE3;
    box-shadow: none;
}

.form_input-error:active, .form_input-error:focus {
    border-color: #da2e4e;
    box-shadow: none;
}

label {
    font-weight: 500;
    color: #5B7380;
    margin-bottom: 0;
}

    label + input[type=checkbox]:checked {
        font-weight: 600;
    }

.checkbox_container {
    display: block;
    position: relative;
    padding: 8px 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox_container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--main-fg-color);
    border: 1px solid #C3D0D6;
    border-radius: 4px;
}

/* On mouse-over, the border darkens */
.checkbox_container:hover input ~ .checkbox {
    border: 1px solid #94a7b0;
}

/* When the checkbox is checked, add a dark grey background */
.checkbox_container input:checked ~ .checkbox {
    background-color: #374C57;
}

.checkbox_container input:checked ~ .checkbox_container:after {
    font-weight: 600;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkbox:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkbox:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--main-fg-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sponsorText {
    background: #F5F8FA;
    border: none;
    width: 100%;
    height: 100px;
    padding: 16px;
    resize: none;
}
