@import url("../fonts/bebasneue/stylesheet.css");
@import url("../fonts/roboto/stylesheet.css");
:root{
    --accent:#c0392b;
}

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
body{
    font-size:12px;
    color:#333;
    background:#3C474D;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.login-container{
    display: flex;
    flex-direction: row;
    flex:1;
    min-height: 100vh;
    background:url(../images/login/login-bg.png) no-repeat center;
    background-size: cover;
}
.login-image{
    position:relative;
    width:500px;
    padding:50px 80px;
    height:100vh;
    float:left;
    background: #E1E2E2;
    color:#34495E;
}
.login-cover{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:#E1E2E2;
}
.admin .login-cover{
    background:#a31741;   
}
.login-cover img.bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}
.login-cover .caption{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    display: flex;;
    align-items: center;
    z-index: 10;
    color:#fff;
    justify-content: center;
    font-size: 14px;
}
.login-cover .caption h2{
    font-size: 40px;
}
.login-cover .caption h4{
    font-size: 25px;
    font-weight: 200;
}
.login-cover .caption .caption-foot{
   font-size:30px;
    /*margin:0 0 15px;*/
    color:#34495E;
    position:relative;
    width:500px;
    padding:50px 80px;
    height:100vh;
    float:left;
    background: #E1E2E2;
    color:#34495E;
}
.btn-signin{
    background:#fff;
    color:#333!important;
    font-weight: bold;
    font-size:18px;
    text-shadow:0px 1px 1px rgba(0,0,0,0.2);
}
.login-form{
    width: calc(100% - 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:#3C474D;
    height: 100vh;
}
.login-form .box{
    width: 82%;
    padding:50px 100px;
    color: white;
}
.login-app-form-box-title{
    font-size:20px;
    display:inline-block;
    border-bottom:2px solid #fff;
    padding-bottom:15px;
    margin:0 0 30px;
}
.login-form .box h2{
    font-size:30px;
    color:var(--acccent);
    font-weight: 200;
    color: white;
}
.admin .login-form .box h2{
    color:crimson;
}
.login-form .box h4{
    font-size: 20px;
    font-weight: 200;
    color:#fff;
}
.login-form .box p{
    font-size: 11px;
    color:#fff;
    /* font-weight: 200; */
}
.login-app-footer img{
    width:80px;
    margin-right:30px;
}
.login-app-footer .text{
    font-size:11px;
}
.login-app-footer{
    margin:50px 0 0;
    color:rgba(255,255,255,0.8);
    display: flex;
}
.login-app-info img{
    width:100%;
    position: absolute;
    bottom:0;
    left:0;
    /* height:60vh; */
    object-fit: cover;
}
h3 {
    font-size: 18px;
    line-height:24px;
    font-weight: 400;
    color:#34495E;
}
h1 {
    font-size:30px;
    margin:0 0 15px;
    color:#34495E;
}
.input-bg .icon{
    position: relative;
    top:30px;
    left:10px;
    font-size:20px;
    color:#fff;
}
.input-bg .form-control{
    padding-left: 35px;
}
.form-group label{
    font-size:11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color:#333;
    margin:0 0 5px;
    display: block;
}
.form-control{
    border-radius: 3px;
    border:1px solid transparent;
    background:rgba(0,0,0,0.1)!important;
    color:#fff;
    height:40px;
    box-shadow:0px 0px 0px rgba(0,0,0,0)!important;
    -webkit-box-shadow:0px 0px 0px rgba(0,0,0,0)!important;
}
.form-control::placeholder{
    color:#ccc;
    font-weight: 400;
}
.form-control:focus{
    border:1px solid #aaa;
}
.has-error .form-control{
    border:1px solid crimson;
}
.help-block{
   /* padding:10px;*/
    font-style: italic;
}
.help-block-error{
    color:crimson;
}
.btn-submit{
    padding:15px 50px;
    border-radius: 50px;
    font-size:12px;
    text-transform: uppercase;
    font-weight: bold;
    background: var(--accent);
    color:#fff!important;
    border:none;
}
.admin .btn-submit{
    background: crimson;
}

@media (max-width: 768px) {
    .login-container{
        display: block;
    }   
    .login-form{
        width: 100%;
        z-index: 99;
        position: relative;
        /* background: none; */
        position: absolute;
        top:0;
        left:0;
        bottom:0;
        right:0;
    }
    .login-form .box{
        padding:30px;
    }
    .login-form .box h2{
        color:#fff;
        text-align: center;
    }
    .login-form .box p{
        color:#fff;
        text-align: center;
    }
    .login-form .box label{
        color:#fff;
    }
    .login-image{
        position: absolute;
        top:0;
        left:0;
        bottom:0;
        right:0;
        width: 100%;
        z-index: 0;
    }
    .login-image .caption{
        display: none;
    }
    .btn-submit{
        display: block;
        width: 100%;
    }
}