@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;	
}
body{
	font-family: 'Josefin Sans', sans-serif;
}
.main{
	height: 100vh;
	width: 100%;
	overflow: hidden;
	padding: 70px;
	background: #f6d257;
}
.main-inner{
	background: #ffffff;
	height: 80vh;
	width: 100%;
	overflow: hidden;
	box-shadow: 0px 5px 20px 5px rgb(97 95 95 / 30%);
	position: relative;
}
.left-box{
	height: 80vh;
	background:url('../images/login-bg.jpg');
	background-size:cover;
	background-position: 30px;
	background-repeat:no-repeat;
}
.login-box{
	margin-top: 50px;
    margin-right: 50px;
}
.login-logo{
	border: 1px solid;
	text-align: center;
}
.login-logo img{
	width: auto;
}
.login-form-hdng h4{
	letter-spacing: 0.5px;
	font-weight: 700;
}
.login-form-hdng p{
	color: #fbcb2b;
	letter-spacing: 1.1px;
}
.login-form-default{
	border-bottom: 0.5px solid #9E9E9E;
	padding: 5px 0px;
	background: #fff;
	position: relative;
}
.login-form-default label{
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #fbcb2b;
	letter-spacing: 1.1px;
}
.login-form input[type="password"]{
	
}
.login-form i{
	position: absolute;
	bottom: 6px;
	right: 12px;
	color: #929191;
}
.login-form input[type="text"],
.login-form input[type="password"]{
	border: none;	
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus{
	outline: none;
}
.login-form ::placeholder{
	color: #999;
	font-size: 14px;
	font-weight: 400;
}
.login-footer input[type="checkbox"]{
	width: 19px;
	height: 16px;
	margin-top: 0px;
	margin-right: 5px;
}
.login-footer span{
	color: #9E9E9E;
	font-size: 14px;
	position: absolute;
}
.login-footer a{
	text-decoration: none;
	color: #9E9E9E;
	font-size: 14px;
}
.login-btn a{
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
	letter-spacing: 1px;
	background: #303135;
	padding: 10px 25px;
	border-radius: 5px;
}
.login-btn a:hover{
	color: #ffffff;
	background: #fbd12f;
	box-shadow: 0px 2px 10px 0px rgb(255 249 173);
}
.android{	
	width: 100%;
	text-align: center;
	padding-top: 10px;
}
.android ul{
	list-style: none;	
}
.android ul li{
	display: inline-block;
	margin: 0 5px;
}
.android p{
	font-size: 14px;
	opacity: 0.5;
	color: #9a8332;
}
.android p span a{
	color: #9a8332;
}

@media screen and (max-width: 991px){
	.left-box{
		display: none;
	}	
	.right-box .login-box{
		padding: 0px 30px;
	}
	.login-box{
		margin-top: 30px;
	    margin-right: auto;
	}
}
@media screen and (max-width: 575px){
	.main{
		padding: 50px 0px;
	}
}
