/*==login form==*/
.login-form{
	height: 100%;
	width: 100%;
	position: fixed;
	top: -120%;
	left: 0;
	z-index: 4000;
	background: rgba(0,0,0,0.0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 1s ease;
}
.login-form.popup{
	top: 0;
}
.login-form form{
	width: 35rem;
	background: rgba(0,0,0,1);
	margin: 0 2rem;
	padding: 1rem 3rem;
	border-radius: .5rem;
	box-shadow: 0 .1rem .3rem #333;
	position: relative;
}
.login-form form h3{
	font-size: 2rem;
	color: #25ccf7;
	padding: 1rem 0;
}
.login-form form .box{
	background-color:transparent;
	border: none;
	outline: none;
	width: 100%;
	padding: 1rem 0;
	margin: 1rem 0;
	border-bottom: .2rem solid #666;
	font-size: 1.6rem;
	text-transform: none;
	color: #ffffff;
}
.login-form form .box::placeholder{
	text-transform: capitalize;
	color:#ffffff;
}
.login-form form .box:focus{
	border-bottom: .4rem solid #666;
	border-color:#008800;
}
.login-form form .box:nth-child(3){
	margin-bottom: 4rem;
}
.login-form form .btn{
	width: 100%;
	background: #25ccf7;
	margin: 2rem 0;
	cursor: pointer;
	border: none;
	color: #fff;
	height: 4rem;
}
.login-form form .btn:hover{
	background: #0000ff;
}
.login-form form .fa-times{
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	font-size: 2.5rem;
	cursor: pointer;
	color: #25ccf7;
	transition: all 1s ease;
}
.login-form form .fa-times:hover{
	color:#ff0000;
}
@media(max-width: 500px){
	#home6{
		font-size: 50%;
	}
}
/*==/login form==*/