body{background: #eee url('../../images/background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}
html,body{
    /*position: relative;*/
    /*height: 100%;*/
    font-family: 'Proxima Nova Soft', 'Helvetica Neue', sans-serif;
}

.login-container{
    position: relative;
    width: 300px;
    margin: 60px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 0 30px 0 rgba(112,112,112,1);
    -moz-box-shadow: 0 0 30px 0 rgba(112,112,112,1);
    box-shadow: 0 0 30px 0 rgba(112,112,112,1);
}

#output{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 0 30px 0 rgba(112,112,112,1);
    -moz-box-shadow: 0 0 30px 0 rgba(112,112,112,1);
    box-shadow: 0 0 30px 0 rgba(112,112,112,1);

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
    -moz-transform: rotateZ(-2deg);
    -ms-transform: rotateZ(-2deg);

}

.avatar{
    width: 100px;height: 100px;
    margin: 10px auto 30px;
    border-radius: 100%;
    border: 2px solid #aaa;
    background-size: cover;
    background-color: #4e8ca5;
}

.form-box input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

.form-box input:focus{
    outline: 0;
    background: #eee;
}

.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
    /*text-transform: lowercase;*/
}

.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.title {
    padding: 20px 0;
    /*background-color: #4cae4c;*/
    font-size: 32px;
    font-family: 'Proxima Nova Soft', 'Helvetica Neue', sans-serif;
    color: #32679b;
    font-weight: 600;
    
}
hr {
    height: 2px;
    color: #b2b7bb;
    background-color: #b2b7bb;
    margin: 2px 10px;
    border: none;
}

.logo-bar {
    height: 40px;
    background-color: lightgrey;
    -webkit-box-shadow: 0 0 5px 2px #505050;
    -moz-box-shadow: 0 0 5px 2px #505050;
    box-shadow: 0 0 5px 2px #505050;
    margin: 0 1px;
    border-radius: 3px;
    padding: 0 10px;
    text-align: center;
    line-height: 40px;
}
.container {
    min-height: calc(100vh - 40px);
}
