* {
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    margin: 0;
    background-color: #005850;
}

.wrapper {
    background-color: #fff;
}

.main-form {
    background-color: rgb(184, 231, 198);
    padding: 10px;
    border-radius: 2px;
}

input[type=text], [type=password], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit], button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}
.top {
    text-align: left;
    width: 100%;
    padding: 15px;
    background-color: white;
    box-shadow: 0 4px 4px -4px gray;
}
.top img {
    width: 220px;
}
.top h2 {
    float: right;
}

.column {
    float: left;
    padding: 10px;
}
.column.left {
    width: 45%;
}
.column.right {
    width: 55%;
}
@media screen and (max-width:600px) {
    .column.left, .column.right {
        width: 100%;
    }
}

.left h1, .left h2, .left h3 {
    margin: 0;
}
.left h2 {
    margin-bottom: 2px;
}
.left h3 {
    color: rgb(48, 66, 48);
}

.content:after {
    content: "";
    display: table;
    clear: both;
}

.error {
    color: rgb(153, 43, 43);
    font: bold 24px sans-serif;
}

.status {
    color: rgb(48, 107, 65);
    font: bold 24px sans-serif;
    font-size: 35px;
}

.definitions {
    padding: 5px;
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
}

.statuses {
    list-style: none;
    padding: 0;
}
.statuses h3 {
    color: rgb(21, 124, 21);
}
.statuses li {
    margin-bottom: 10px;
    font-size: 14px;
}

footer {
    background-color: #333;
    color: white;
}
.widget {
    float: left;
    width: 50%;
    padding: 10px;
}
.h-widget {
    font-size: 16px;
    text-shadow: none;
    color: #008580;
}
.textwidget {
    font-size: 12px;
    letter-spacing: 0px !important;
    color: #fff;
    text-shadow: none;
}
.textwidget a {
    text-decoration: none;
    color: #008580;
}
footer:after {
    content: "";
    display: table;
    clear: both;
}
.copy {
    padding: 15px;
    font-size: 12px;
    letter-spacing: 0;
    background-color: #005850;
    color: #fff;
    text-align: center;
}

hr {
    height: 0;
    margin: 1.313em 0;
    border: 0;
    border-top: 1px solid #f2f2f2;
}

.x-nav {
    list-style: none;
}
.x-nav li {
    margin: 0 0.5em;
    display: inline-block;
}
.x-nav li a {
    display: block;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}
.form-text {
    margin: 0px;
    font-size: 14px;
    padding-bottom: 10px;
}
.form-text.strong {
    font-weight: bold;
}
.form-text.thank {
    font-weight: bold;
    font-style: italic;
    color: #005850;
}
.redirect-notification {
    top: 50%;
    left: 50%;
    height: 300px;
    width: 600px;
    margin-top: -100px;
    margin-left: -300px;
    position: absolute;
    font: normal 25px sans-serif;
    text-align: center;
}
.current-status {
    font-size: 18px;
}
.main-form-container {
    position: relative;
}
#main-form-processing {
    text-align: center;
    font: bold 24px sans-serif;
    position: absolute;
    color: #fff;
    background-color: green;
    width: 100%;
    height: 100%;
    padding: 60px;
    opacity: 0.9;
    display: none;
}