.loginBox{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
}
.loginBg{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
}

.loginWarp{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 98;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lg-box{
	width: 400px;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 10px;
/* 	background: white; */
}
.lg-box form{
	width: 100%;
}
.icon{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: auto;
}
.icon i{
	font-size: 45px !important;
	color: #037971;
}
.user-icon{
	font-size: 2.9rem;
	text-transform: uppercase;
	margin: 15px 0;
	color: #037971;
	text-align: center;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	letter-spacing: 3px;
	line-height: 30px;
}
.user-input{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
	display: flex;
	align-items: center;
}
.user-icons{
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user-icons i{
	font-size: 18px !important;
	color: #fff;
	font-weight: 500;
}
.user-inputs{
	flex: auto;
	position: relative
}
.user-inputs h5{
	display: none;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #2b817b;
	font-size: 18px;
	transition: .3s;
}
.user-inputs input{
	width: 100%;
	height: 45px;
	line-height: 45px;
	color: white;
	font-size: 15px;
	background: none;
}
input:-webkit-autofill { box-shadow: 0 0 0px 1000px white inset;}

.login-sub{
	width: 100%;
	margin-top: 20px;
}
.login-sub input{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	margin: 1rem 0;
	font-size: 1.2rem;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
	cursor: pointer;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	background-size: 200%;
	transition: .5s;
}