
body, form {
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

    form > div {
        padding: 0 15vw;
    }

.page-header {
    background-color: #031848;
    height: 80px;
    position: fixed;
    z-index: 101;
    padding-top: 0px;
    width: 100vw;
}

footer {
    background-color: #031848;
    height: 80px;
    position: fixed;
    z-index: 101;
    bottom: 0;
    padding: 0 15vw;
}

.footer-body-padding {
    height: 100px;
    width: 99%;
    overflow: hidden;
    margin-left: -1000%;
}

.page-header + div {
    padding: 90px 30vw;
}

.page-header > .container {
    width: 70vw;
    height: 80px;
    display: flex;
    align-items: center;
    color: white;
}

footer > .container {
    width: 70vw;
    display: flex;
    align-items: center;
    color: white;
    padding: 5px 0;
}

    .page-header > .container > img,
    footer > .container > img {
        height: 67px;
    }

.page-header > .container > div {
    flex-grow: 1;
    text-align: center;
    font-size: 2vw;
}

footer > .container > div {
    flex-grow: 1;
}

.page-header a,
footer a {
    text-decoration: none;
    color: white;
}

    .page-header a:hover,
    footer a:hover {
        text-decoration: underline;
        color: silver;
    }

.pdf-icon {
    height: 40px;
}

.data-form {
    display: grid;
    grid-template-columns: auto 1fr;
}

    .data-form > label-cell {
        font-weight: bold;
        white-space: nowrap;
        padding-right: 1vw;
        text-align: right;
    }

    .data-form > label,
    .label {
        font-weight: bold;
        white-space: nowrap;
    }

    .data-form > data-cell {
    }

data-cell > input[type="text"] {
    width: 100%;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
    padding-right: 1vw;
}

.shadow-card {
    border: 1px solid black;
    border-radius: 6px;
    box-shadow: 3px 3px;
    padding: 2vh 2vw;
    margin: 2vh 0;
}

.blue {
    color: #031848;
}

.memberCat {
    font-weight: bold;
    color: #031848;
}

.memberCatHighlight {
    font-weight: bold;
    color: #cc3300;
    font-size: .8em;
}

.highlight {
    color: #cc3300;
    font-weight: bold;
}

.divider {
    margin: 2vh 0;
    text-align: center;
}

.span-columns {
    grid-column: span 2;
}

button, input[type="submit"] {
    background-color: #00206A;
    text-transform: uppercase;
    padding: .5em;
    transform: scale(1);
    color: white;
    margin: .5em;
    font-size: 1.2em;
    cursor: pointer;
}

    button:hover, input[type="submit"]:hover {
        transform: scale(1.08);
    }

.horizontal-radio-list,
.checkbox-list,
.payment-options,
.memberClass {
    margin-bottom: 1em;
}

.credit-card-info {
    display: grid;
    grid-template-columns: auto 1fr;
}

    .credit-card-info > label {
        font-weight: bold;
        white-space: nowrap;
        padding-right: 1vw;
        text-align: right;
    }

@media (orientation: portrait) {

    body, form, input, select {
        font-size: 2.8vw;
    }

        form > div {
            padding: 0 10vw;
        }

    .page-header + div {
        padding: 90px 10vw;
    }

    .page-header > .container {
        width: 80vw;
    }

    footer {
        font-size: 18px;
        padding: 0 10vw;
    }

        footer > .container {
            width: 80vw;
        }

    .label {
        white-space: normal;
    }
}
