@charset "utf-8";
/* CSS Document */

body{
  background-image: url('../images/bg-login.jpg');
  background-size: 100%;  
}
body::before{
    background-color:rgba(0,0,0,0.5);
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    height: 101%;
    width: 100%;
}
.section{
    position: relative;
}
.section > .container{
	height: 100%;
}
.section > .container > .row{
	align-items: center;
	height: 100%;	
}
.navbar .navbar-brand{
  margin: auto;
}
.single-photo-box{
    background-color: var(--siteColor);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.login-box{
    background-color: #fff;
    height: 100%;
    padding: 3rem 1.5rem 1.5rem;
}
.login-box-headline {
    margin-bottom: 2rem;
    text-align: center;
}
.login-box h1, .login-box h2{
    font-size: 1.5rem;
    font-weight: bold; 
	margin-bottom: 0;   
}
.form-field{
    margin-bottom: 1rem;
}
.login-box .form-field label{
	font-size: 0.85rem;
	line-height:1;
}
.form-field .form-control{
    border-color: transparent;
    border-radius: 0;
    border-bottom-color:  #ced4da;
    height: 3rem;
}
.form-field .form-control:focus{
    border-bottom-color:  #86b7fe;
    box-shadow: none;
}
.form-field .was-validated .form-control:invalid, .form-field .form-control.is-invalid{
	border-color: #dc3545;
}
.input-with-icon{
    position: relative;
}
.input-with-icon > i{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
    color:  #777;
    font-size: 1.25rem;
}
.input-with-icon > .form-control{
    padding-left: 1.5rem;
}
.login-box .btn{
    text-transform: uppercase;
}

.login-box .step-2{
	display:none
}
#otp .form-control{
	border-color: #aaa;
	font-size: 1.5rem;
    font-weight: 500;
	max-height:40px;
	max-width:40px;
}

@media only screen and (min-width: 992px) {
	.section{
		padding: 3rem 0;
	}
}
@media only screen and (min-width: 1200px) {
    .section {
        padding: 5rem 0;
    }
}
@media only screen and (max-width: 991.98px) {
	body{
	  overflow: hidden;	  
	}
	.login-box{
		border-radius:0.25rem;
	}
	.section{
		height: calc(100vh - 116px);
		padding:1.5rem 0;
	}
	
}











/* END LOGIN */