html{
    min-height: 100%;
    font-size: 16px;
}

body{
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    min-height: 100%;
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    font-family: "Lato", sans-serif;
    padding: 3rem;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text-blue{
    color: #192b68;
}

.text-muted{
    color: #9c9c9f;
}

header{
    height: 100px;
    width: 100%;
}

#logo{
    background-image: url("../img/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 60px;
}

#main-content{
    box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 11px;
}

#welcome{
    background-image: url(../img/bow-large.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-position-x: 12px;
    padding-bottom: 25px;
}

h1{
    font-size: 2.25rem;
}

h2{
    font-size: 1.8rem;
}

.fineprint{
    font-size: 70%;
}

.bg-dark-transparent{
    background-color: rgba(0,0,0,.4);
}

#winenet{
    display: block;
    position: absolute;
    width: 45px;
    height: 39px;
    background-image: url(../img/winenet.png);
    background-size: 45px 39px;
    bottom: 25px;
    right: 30px;
}

.form-group{
    margin-bottom: 1rem;
}

.form-control{
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0px;
    padding: 0;
    color: #fff;
    box-shadow: none;
}

.form-control:focus {
    background: none;
    box-shadow: none;
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

input::placeholder {
    color: #aaa !important;
    font-weight: 300;
}

.btn{
    border-radius: 50px;
}

.btn-white{
    background-color: #fff;
    border-color: #fff;
    color: #192b68;
    font-weight: 400;
    transition: all .2s;
}

.btn-white:hover, .btn-white:active{
    background-color: #ddd !important;
    border-color: #ddd !important;
}