.login-page{
    background: #fff url('/images/bg-login.jpg') center no-repeat;
    background-size: cover;
}
.login-box, .register-box{
    width: 100%;
    padding: 40px;
}
.login-box h2{
    font-size: 18px;
    line-height: 1;
    margin: 0;
    text-align: center;
    padding: 0;
}
.login-logo{
    background-color: #000;
    padding: 15px 0;
    margin: 0 auto;
    text-align: center;
}
.login-logo > img{
    margin: 0 auto;
    display: block;
}
.form-control{
    border-radius: 0 !important;
    border-color: #ccc;
}
.btn[type=submit]{
    display: block;
    width: 100%;
    background: #377da5;
    border: none;
    border-radius: 0 !important;
    color: #efefef;
    transition: background-color .2s ease-in-out;
    font-weight: bold;
}
.btn[type=submit]:hover{
    background: #3d8fb9;
}
.login-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000;
    text-align: center;
}
.login-footer > p{
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    padding: 10px 0;
}
.alert-danger{
    border-radius: 0;
    border: none;
    font-weight: bold;
    text-align: center;
}
@media (min-width: 768px){
    .login-wrapper{
        position: absolute;
        top: 40%;
        left: 0;
        z-index: 1;
        width: 100%;
    }
    .login-box, .register-box{
        width: 360px;
        height: auto;
        margin: 0 auto;
        padding:0;
        display: block;
        transform: translatey(-50%)
    }
    .login-box-body, .register-box-body{
        background: #fff;
        padding: 20px;
        border-top: 0;
        color: #666;
    }
    .login-logo > img{
        margin: 0 auto;
    }
    .login-box-body{
        background: #e4ebef;
    }
    .login-footer{
        /*position:relative;*/
        /*bottom:auto;*/
        /*left:auto;  */
    }
}

