:root {
    /* Colors */
    --black: #000000;
    --dark-gray: #444444;
    --gray: #777777;
    --light-gray: #dddddd;
    --x-light-gray: #eeeeee;
    --white: #ffffff;
    --blue: #0e60c4;
    --green: #0E500A;
    --red: #9e1511;
    --light-red: #e9d2d2;
    --arc-blue: #005dc7;
    /* Spacing */
    --spacer--small: .5em;
    --spacer: 1em;
    --spacer--large: 2em;
    /* Fonts */
    --serif: 'Miller Headline', georgia, serif;
    --serif--bold: 'Miller Headline Bold', georgia, serif;
    --sans-serif: 'Benton Sans Condensed', Helvetica, Arial, sans-serif;
    --sans-serif--bold: 'Benton Sans Condensed Bold', Helvetica, Arial, sans-serif;
    /* Elements */
    --button-color: var(--arc-blue);
    --link-color: var(--arc-blue);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 12px;
    color: #464646;
    font-family: "Benton Sans Condensed";
}



/*--------------------------------------------------------*/
/* HEADER STYLES */

.site-header {
    padding: var(--spacer--large);
    margin-bottom: var(--spacer--small);
    background: var(--black);
    text-align: center;
}

#header {
    width: 100%;
    margin: 5px auto;
    font-size: 10px;
    text-align: center;
    color: var(--black);
}

#header .customer-service {
    text-decoration: underline;
}

#message {
    width: 100%;
}

.signup-information {
    width: 100%;
}

[class^="page-title"] {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 30px;
    text-align: center;   
}

.page-title-2 {
    margin-bottom: 5px;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}

.image-container img {
    width: 200px;
}

#header-txt {
    font-weight: bold;
    font-size: 26px;
    margin-left: 25px;
    padding-top: 90px;
    float: left;
}

.instruction-list {
    margin: 10px auto 21px;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 18px;
    list-style-type: square;
    list-style: none;
    width: 100%;
    padding-left: 16px;
}

.instruction-list li {
    margin-bottom: 10px;
}

.instruction-list li::before {
    content: "\25AA";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--red); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

#container { 
    max-width: 768px;
    margin: 15px auto;
    padding: 20px;
}

#container-noborder {
    width: 100%;
    margin: 0 auto 16px;
}

.error {
    display: flex;
    padding: 13px 23px 13px 13px;
    border: 1px solid var(--red);
    color: var(--red);
    background-color: var(--light-red);
    margin-bottom: 21px;
}

.error img {
    transform: translateX(10px);
}

/*--------------------------------------------------------*/
/* FORMS */

label, .label {
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
    font-size: 11px;
    font-weight: bold;
}

.label-inline {
    display: inline;
    margin-top: 5px;
    font-size: 14px;
    color: #767676;
}

input, .input {
    margin-bottom: 5px;
    margin-top: 5px;
    height: 40px;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid #777777;
    width: 100%;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
}

.submit {
    margin: 5px 0;
    height: 40px;
    color: var(--white);
    font-weight: 700;
    background: var(--button-color);
    border: 1px;
    width: 100%;
    border-radius: 3px;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*--------------------------------------------------------*/
/* MISC */

.margin-top-15 {
    margin-top: 15px;
    width: 100%;
}

.inline-width {
    width: 200px;
    float: left;
    color: #444444;
    font-size: 14px;
}

/*--------------------------------------------------------*/
/* LINKS */

a:link {
    font-weight: bold;
    text-decoration: none;
    color: #0e60c4;
}

a:visited {
    font-weight: bold;
    text-decoration: none;
    color: #9e1511;
}

a:active {
    font-weight: bold;
    text-decoration: none;
    color: #187A5F;
}

a:hover {
    font-weight: bold;
    text-decoration: underline;
    color: #187A5F;
}

img[alt="error"] {
    width: 5px;
}