/*
* Code by : Christian Samuel - Crafion
* Contact : christiansammmm@gmail.com
* © 2016
*/
/*login page*/
div.full-bg {
    background: url('../images/login-bg.jpg') no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    /*-ms-filter: blur(2px) brightness(0.8);*/
    /*-moz-filter: blur(2px) brightness(0.8);*/
    /*-o-filter: blur(2px) brightness(0.8);*/
    /*filter: blur(2px) brightness(0.8);*/
    position: fixed;
    z-index: -1;
    /*display:none;*/
}
body.lab div.full-bg-filter {
    background:rgba(150, 40, 27,.6);
    background-size: cover;
    width: 100vw;
    height: 100vh;
    /*-ms-filter: blur(2px) brightness(0.8);*/
    /*-moz-filter: blur(2px) brightness(0.8);*/
    /*-o-filter: blur(2px) brightness(0.8);*/
    /*filter: blur(2px) brightness(0.8);*/
    position: fixed;
    z-index: -1;
}
body.clinic div.full-bg-filter {
    background:rgba(31,58,147,.5);
    background-size: cover;
    width: 100vw;
    height: 100vh;
    /*-ms-filter: blur(2px) brightness(0.8);*/
    /*-moz-filter: blur(2px) brightness(0.8);*/
    /*-o-filter: blur(2px) brightness(0.8);*/
    /*filter: blur(2px) brightness(0.8);*/
    position: fixed;
    z-index: -1;
}

.main-logo-wrapper {
    margin: 50px 0 0px;
}

.main-logo {
    margin: 0px auto 0;
    height: 135px;
    width: auto;
}

.greeting-message{
    color:white;
    font-family: "Helvetica";
    font-weight: 100;
    font-size: 20px;

    margin-bottom: 50px;
}

.bolder{
    font-weight: 700;
}

hr.separator{
    height:0;
    /*width:70%;*/
    border-bottom:1px rgba(255,255,255,0.5) solid;
}

input:not([type=submit]){
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-bottom: 1px solid #fff;
    background:none;
    margin-bottom:20px;
    padding-left:10px;
    padding-right:10px;
    border-radius:0;

    font-size:15px;
    line-height: 30px;
    font-family: "Helvetica";
    font-weight:300;
    color:white;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input.error:not([type=submit]){
    border-bottom: 1px solid #e53935;
    color:#e53935;
}

input:not([type=submit]):-moz-placeholder{
    color:#ccc;
}
input:not([type=submit]):-ms-input-placeholder{
    color:#ccc;
}
input:not([type=submit])::-webkit-input-placeholder{
    color:#ccc;
}

.submit-wrapper{
    padding:10px 10px 5px;
    max-width:150px;
    margin:0 auto;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}
body.lab .submit-wrapper:hover{
    background: #96281B;

}

body.clinic .submit-wrapper:hover{
    background: #2C3E50;

}

.submit-wrapper:hover > *,.submit-wrapper:focus > *{
    color:#ccc;
}

input[type=submit]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color:white;
    background:none;
    border:none;

    font-size:18px;
    font-family: "Helvetica";
    font-weight:300;
    color:white;
}

.submit-wrapper .fa{
    font-size:20px;
    font-weight: 100;
}

.error-message{
    color:#fff;
    font-size: 13px;
    line-height:15px;
    font-weight: 100;
    font-family: "Helvetica";
    padding-bottom:15px;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}

