html, body {
    height: 100%;
}

body {
    font-family: Din-Pro-Med, sans-serif;
    padding: 0;
    margin: 0;
    color: #53585f;
    background-color: #f8f8fa;
}

*:focus {
    outline: 0;
}

a {
    color: #337ab7;
}

@font-face {
    font-family: Din-Pro-Bold;
    src: url('/static/fonts/DINPro-Bold.otf');
}

@font-face {
    font-family: Din-Pro-Med;
    src: url('/static/fonts/DINPro-Medium.otf');
}

@font-face {
    font-family: Flexo-Medium;
    src: url('/static/fonts/Flexo-Medium.woff2'),
    url('/static/fonts/Flexo-Medium.woff'),
    url('/static/fonts/Flexo-Medium.otf');
}

@font-face {
    font-family: Flexo-Bold;
    src: url('/static/fonts/Flexo-Bold.woff2'),
    url('/static/fonts/Flexo-Bold.woff'),
    url('/static/fonts/Flexo-Bold.otf');
}

@font-face {
    font-family: BebasNeue;
    src: url('/static/fonts/bebasneue.woff2'),
    url('/static/fonts/bebasneue.woff'),
    url('/static/fonts/BebasNeue.otf');
}

#content {
    min-height: 100%;
    max-height: 100%;
    color: #333;
    position: relative;
    background-image: url(/static/images/splash-670w.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 131, 198, 0.9);
    transform: translateX(0%);
    transition: transform 0.8s ease-out 1.2s;
    text-align: left;
}

.form-overlay {
    font-family: Flexo-Bold, sans-serif;
    margin: 50px 5% 0 5%;
    max-width: 430px;
}

.form-overlay h1 {
    color: #FFFFFF;
    margin: 0 0 40px;
}

.form-overlay h3 {
    color: #FFFFFF;
    margin: 10px 0 35px;
    font-size: 24px;
}

.form-overlay h4 {
    color: #FFFFFF;
}

.form-control {
    border-radius: 0;
    border: 0 none;
    height: 40px;
    margin: 20px 0;
}

.btn-default {
    font-family: Roboto,Helvetica Neue,sans-serif;
    background-color: hsla(0,0%,100%,.2);
    border: 0 none;
    font-size: 18px;
    padding: 5px 10px;
    color: #FFFFFF;
}

.form-alert {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    color: #FFFFFF;
    background-color: #d9534f;
    line-height: 2;
    text-align: center;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

@media (min-width: 1200px) {
    #content {
        background-image: url(/static/images/splash-1200w.jpg);
    }
}

@media (min-width: 768px) {
    #overlay {
        left: 38%;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  select,
  textarea,
  input {
    font-size: 16px;
  }
}