﻿html,
body,
body {
    font: normal 16px "Segoe UI", Arial, sans-serif;
}

#wrapper {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    width: 100%;
    background-image: url('/img/background3.jpg');
    background-repeat: round;
}
#header {
    margin-right: 10px;
    margin-left: 10px;
    width: 97.9166667%; /* 940 divided by 960 */
}
#wrapper .overlay:after {
    /*background-color: rgba(0, 0, 0, 0.2) !important;*/
    /* background: rgb(0,0,0);*/
    /*  background: radial-gradient(circle, rgba(0,0,0,0) 47%, rgba(25,25,27,1) 100%); */
    /*
    background: rgb(110,106,131);
    background: radial-gradient(ellipse, rgba(110,106,131,0) 47%, rgb(110,106,131) 100%);
        */
    content: "";
    position: absolute;
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 0;
    transform: none !important;
    transition: all .4s ease;
    height: 100%;
    width: 100%;
    z-index: 2;
}
section.main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

@media screen and (max-width: 540px) {
    section.main {
        height: auto !important;
    }
}

section.main .container {
    background-color: rgba(255,255,255,0.7);
    padding: 60px;
    position: relative;
    z-index: 99;
    border-radius: 10px;
    max-width: 960px;
}

@media screen and (max-width: 540px) {
    section.main .container {
        padding: 30px;
    }
}

section.main .container h1 {
    font-family: 'Lato', Sans-Serif;
    font-size: 26px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

section.main .container form {
    margin: 2rem 0;
}

section.main .container .body-text {
    padding: 20px 0;
    font-family: 'Raleway', Sans-Serif;
    font-size: 15px;
}

section.main .container form .form-control,
section.main .container form label {
    margin: 10px 0;
    font-family: "Lato", Sans-Serif;
    font-size: 15px;
    font-weight: 300 !important;
}

section.main .container form button {
    margin-top: 20px;
    background-color: #0a357a;
    display: flex;
    align-items: center;
}

    section.main .container form button span {
        margin-left: 10px;
        font-size: 10px;
    }

input {
    border-radius: 10px;
    margin-bottom: 10px;
}
.selectWrapper {
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
    background: #cccccc;
    border: 1px solid #cccccc;
}

.selectBox {
    width: 140px;
    height: 40px;
    border: 0px;
    outline: none;
}


button[type=submit] {
    display: block;
    margin: 20px auto 0;
    width: 150px;
    height: 40px;
    border-radius: 25px;
    border: none;
    color: #eee;
    font-weight: 700;
    box-shadow: 1px 4px 10px 1px #aaa;
    background: #207cca; /* Old browsers */
    background: -moz-linear-gradient(left, #207cca 0%, #9f58a3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #207cca 0%,#9f58a3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #207cca 0%,#9f58a3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207cca', endColorstr='#9f58a3',GradientType=1 );
}

