﻿@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: 'Libre Franklin', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #707070;
}

html, body {
    margin: 0px;
    padding: 0px;
}

.page-container {
    width: 850px;
    margin: auto;
}

.header {
    margin: 20px;
    text-align: center;
}

.title {
    text-align: center;
    width: 50%;
    border-bottom: 2px solid #21205F;
    margin: 0 auto 5px;
    padding: 5px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #eaedf5;
    color: #21205F;
}

.sub-title {
    text-align: center;
    font-size: 14px;
    width: 70%;
    margin: 0 auto 20px;
}

ol {
    margin-bottom: 25px;
}

li {
    margin-bottom: 15px;
}

.instructions-text {
    width: 360px;
    float: left;
}

.instructions-image {
    width: 346px;
    float: right;
}

    .instructions-image > img {
        width: 100%;
        border-radius: 10px;
        border: 1px solid #21205F;
    }

.clear {
    clear: both;
}

.note {
    font-weight: bold;
    font-size: 18px;
}

a.button {
    display: block;
    border-radius: 20px;
    color: #ffffff;
    line-height: 1;
    padding: .4em .9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    margin: 10px 0 0;
    text-shadow: none;
    background-color: #2C30BB;
}

    a.button:hover, input[type=submit]:hover {
        background-color: #21205F;
    }

.centered-text {
    text-align: center;
}

.form-container {
    width: 60%;
    margin: 15px 0 0 0;
    float: left;
}

.form-image {
    width: 35%;
    float: right;
    text-align: center;
    margin: 15px 0 0 0;
}

    .form-image > img {
        width: 100%;
    }

input[type=text], input[type=password], select, textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: vertical;
    padding-left: 5px;
    padding-right: 5px;
}

.col-33 {
    float: left;
    width: 25%;
    margin-top: 15px;
}

.col-66 {
    float: right;
    width: 72%;
    margin-top: 15px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

input[type=submit] {
    border-radius: 20px;
    color: #ffffff;
    line-height: 1;
    padding: .4em .9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    margin: 10px 0 0;
    text-shadow: none;
    background-color: #2C30BB;
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 20px;
}

.footer {
    text-align: center;
    width: 80%;
    border-top: 1px solid #21205F;
    margin: 50px auto 30px;
    padding-top: 5px;
    font-size: 14px;
}
