﻿body {
    height: 100%;
    background-color: #000;
    font-size:12px;
}
div.login {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("../images/bg-home-hero-3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.alert-warning{position:relative;}
/*.container{
    height:100%;
}*/
.vertical-center{
    min-height: 100%;  
    min-height: 100vh;
    height:100px;/*this is for IE, min-height will override this anyway*/
    display: flex;
    align-items: center;
}
.form-signin
{
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}
.form-signin .form-signin-heading, .form-signin .checkbox
{
    margin-bottom: 10px;
}
.form-signin .checkbox
{
    font-weight: normal;
}
.form-signin .form-control
{
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin .form-control:focus
{
    z-index: 2;
}
.form-signin input[type="text"]
{
    margin-bottom: -1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-signin input[type="password"]
{
    margin-bottom: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.account-wall
{
    padding: 20px 0px 20px 0px;
    background-color: #fff; /*#f7f7f7;*/ 
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    min-width:300px;
    border-radius:7px;
}
.login-title
{
    margin-top: -30px;
    margin-bottom: 75px;
    color: #2362a5;
    font-size: 28px;
    font-weight: 400;
    display: block;
}
.login-callout {
    width: 300px;
    padding-top: 10px;
    border-top: 1px solid #efefef;
}
.profile-img
{
    margin: 0 5px;
}
.need-help
{
    margin-top: 10px;
}
.switch {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-top: 4px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2362a5;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2362a5;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.shoulders {
    display: flex;
    align-items: center;
}

div.shoulders-background {
    background-image: url("../images/shoulders-background.png");
    filter: none;
    -webkit-filter: none;
}