@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}
body{
	background: #fff;
	transition: 0.4s all;
}
html{
	scroll-behavior: smooth;
	background: #fff;
	color: #555;
}
.login-bg {
    min-height: 100vh;
    background-image: url('../../images/bg4.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.overlay{
	width: 100%;
	min-height: 100vh;
	background-color: rgba(6, 37, 125, 0.8);
}
.left-box{
	height: 94vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.right-box{
	height: 94vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}
.left-box h2{
	color: #fff;
	line-height: 50px;
	font-size: 40px;
}
.left-box h2 .left-box-hdng{
	font-size: 45px;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.18);
}
.text-up h2{
	color: #fff;
	font-weight: lighter;
}
.login-box{
	background: #fff;
	width: 350px;
	border-top: 3px solid #ff7c08;
	box-shadow: 6px 0 15px rgba(0,0,0,0.4);
}
.login-box label{
	color: #003268;
	font-size: 14px;
	letter-spacing: 1.1px;
	font-weight: 500;
}
.login-box input{
	height: 40px;
	border: 1px solid #ccc;
	outline: none;
	border-radius: 22px;
	padding-left: 10px;
	font-weight: 500;
	color: #003268;
}
.login-box input:hover, .login-box input:focus{
	border: 1px solid #003268;
}
.login-box input::placeholder{
	color: #ccc;
	font-size: 14px;
}
.login-box input:hover::placeholder,
.login-box input:focus::placeholder{
	color: #003268;
	font-weight: 500;
}
.eye-btn i {
  position: absolute;
  bottom: 35px;
  right: 30px;
  color: #929191;
}
.right-box-btn a:first-child{
	text-decoration: none;
	background: #003268;
	padding: 10px 30px;
	color: #fff;
	border-radius: 20px;
	letter-spacing: 1.1px;
	font-weight: 500;
	transition: 0.4s linear;
}
.right-box-btn a:first-child:hover{
	background: #1f1c87;
	transition: 0.4s linear;
}
.right-box-btn a:last-child{
	font-size: 13px;
    color: #bbb;
}
.login-ftr p{
	font-size: 12px;
    color: #9E9E9E;
}
.login-ftr p a{
	color: #607D8B;
}
@media screen and (max-width: 1150px){
	.login-box{
		width: auto;
	}
}
@media screen and (max-width: 991px){
	.right-box {
    align-items: center;    
	}
}
@media screen and (max-width: 767px){
	.left-box{
		display: none;
	}
	.right-box {
		height: 100vh;
    align-items: center;    
	}
	.login-ftr p {
    text-align: center;
	}
}