@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
body{
	font-family: 'Open Sans', sans-serif;
	/*background: #FFF;*/
	background: #FFF url('../img/bottom.png') no-repeat bottom right;
}
.border{
	border: 1px solid #333;
}
a{text-decoration: none;}
.main{
	position: relative;
	/*overflow: hidden;*/
	width: 100%;
	height: 100vh;
}
.loginmaster{
	padding-top: 20px;
	z-index: 1000;
}
.loginbox .loginmaster::after{
	content: '';
	position: absolute;
	width: 500px;
	height: 400px;
	top: 0px;
	left: 0px;
	z-index: -100;
	background: url('../img/top.png') no-repeat;
}
.logo{
	width: 100px;
	border: 5px solid #FFF;
	border-radius: 100%;
	margin-bottom: 10px;
}
.heading{
	font-size: 1.8em;
	font-weight: 500;
	text-align: center;
}
.login
{
	padding: 0px 30px;
	/*border: 1px solid #ddd;*/
	border-radius: 10px;
}
.login label{
	color: #727586;
	font-weight: 400;
}
.input-filed i{
	text-align: center;
	line-height: 50px;
	color: #acacac;
	font-size: 1.2em;
	position: absolute;
	margin-top: 15px;
    margin-left: 15px;
}
.login input, .login select{
	width: 100%;
	height: 50px;
	outline: none;
	border: none;
	background: #f0f0f0;
	border-radius: 30px;
	padding-left: 15px;
	font-size: 1em;
	margin-top: 15px;
	padding-left: 45px;
}
.login input[type=submit]
{
	background: #006666;
	border: none;
	padding: 0px;
	color: #FFF;
	font-weight: 500;
	margin-bottom: 10px;
}
.social{
	margin-top: 30px;
	padding: 0px;
	border-top: 1px solid #ddd;
}
.social span{
	color: #444;
	display: block;
	text-align: center;
	margin-top: -15px;
}
.social span b{
	background: #FFF;
	font-weight: bold;
	width: 50px;
	display: inline-block;
}
.social_login{
	margin-top: 20px;
	padding: 0px 20px;
	height: 100%;
}
.social_login a{
	border: 1px solid #ddd;
	width: 100%;
	min-height: 50px;
	line-height: 50px;
	display: block;
	padding: 0px 15px;
	margin-bottom: 15px;
	border-radius: 5px;
	text-decoration: none;
	color: #666;
	font-weight: 500;
}
.social_login a img{
	margin-right: 20px;
}
.link{
	font-size: 16px;
	text-align: center;
	padding: 20px 15px;
}
.login .error{
	color: red;
}







@media (max-width: 800px)
{
	.main{
		overflow-y: auto;
	}
	.loginbox .loginmaster::after{
		width: 100%;
		height: 550px;
		transform: translateY(-43%);
		z-index: -100;
	}
	.login{padding: 0px 10px;}
	.social{
		border: none;
		border-top: 1px solid #ddd;
		display: block;
		padding: 20px 10px;
	}
	.social span{
		margin-top: -35px;
	}
	.social_login{padding: 0px 10px;}
	.social_login a{
		display: inline-block;
	}
}