*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
.main{
	height: 100vh;
	width: 100%;
	overflow: hidden;
	background:url('../images/login-bg.jpg');
	background-size:cover;
	background-position: center center;
	background-repeat:no-repeat;
}
.login-box{	
	padding: 10px 0px;
	margin-top: 60px;	
}
.login-logo{
	margin: 30px 10px;
	text-align: center;
}
.login-logo img{
	background: #fff;
	border-radius: 10px;
}
.login-inner{
	width: 330px;
}
.login-header{
	margin-top: 30px;
}
.login-header h2{
	color: #623089;
	margin-bottom: 50px;
}
.outer{
	border: 10px solid rgba(254, 149, 21, 0.5);
	border-radius: 40px;
}
.login-form-default{
	border: 1px solid #d0d0d0;
	padding: 10px 7px;
	background: #fff;
	position: relative !important;
	border-radius: 25px;
	padding-left: 15px;
}
.login-form-default i:first-child{
	color: #f7951d;
	padding-right: 5px;
}
.login-form i:last-child{
	position: absolute;
	top: 15px;
	right: 15px;
	color: #929191;
}
.login-form input[type="text"],
.login-form input[type="password"]{
	border: none;	
	border-radius: 2px;	
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus{
	outline: none;
}
.login-form ::placeholder{
	color: #d0cccc;
	font-size: 14px;
	font-weight: 400;
}
.login-footer input[type="checkbox"]{
	width: 19px;
	height: 16px;
	margin-top: 0px;
}
.login-footer span{
	color: #623089;
	font-size: 14px;
	position: absolute;
}
.login-footer a{
	text-decoration: none;
	color: #623089;
	font-size: 14px;
}
.login-btn a{
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.2px;
	background: #623089;
	padding: 10px 25px;
	border-radius: 25px;
	display: block;
}
.login-btn a:hover{
	color: #fff;
	background: #f7951d;
	box-shadow: 0px 2px 6px 0px rgba(248, 187, 62, 0.5);
}
.android{
	width: 330px;
	position: fixed;
	bottom: 0px;
	text-align: center;
}
.android ul{
	list-style: none;	
}
.android ul li{
	display: inline-block;
	margin: 0 5px;
}
.android p{
	font-size: 14px;
	color: #9E9E9E;
}
.android p span a{
	color: #9E9E9E;
}
@media screen and (min-width: 1200px){
	.login-box {
	    padding: 10px 0px;
	    margin-top: 15px;
	}
}
@media screen and (max-width: 1199px){
	.login-box{
		margin-top: 10px;
	}
}
@media screen and (max-width: 991px){
	.login-box{
		position: relative;
		width: 360px;
	}
	.main{
		background-position: unset;
	}
}
@media screen and (max-width: 767px){
	.main{
		background-position: center;
	}
	.left-box h2{
		font-size: 30px;		
	}
	.left-box{
		text-align: center;
		background: rgba(63, 73, 80, 0.3);
	}
	.login-form i{
		right: 18px;
		top: 277px;
	}
	.login-box{
		width: auto;
	}
	.right-box{
		background: rgba(98, 48, 137, 0.3);
		height: 100vh;
	} 
	.login-footer span, .login-footer a{
		color: #fff;
	}
	.android{
		position: static;
	}
}
@media screen and (max-width: 420px){
	.left-box h2{
		font-size: x-large;
		text-align: center;
	}
}