*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-size: cover;
	background-position: center;
}

.login-box
{
	position: relative;
	max-width: 400px;
	width: 100%;
	height: auto;
	background: transparent;
	border: 2px solid(255,255,255,.5);
	box-shadow: 0 0 20px;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	
} 

.login-page
{
	width: 100%;
	padding: 40px;
}

.login-page h2
{

	font-size: 30px;
	text-align: center;
	text-transform:uppercase ;

}

.input-box
{
	position: relative;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid;
	margin: 20px;
}

.input-box label
{

	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-weight: 500;
	pointer-events: none;
	transition: .5s;
	justify-content: center;
}

.input-box input:focus~label,

.input-box input:valid~label
{
	top: -5px;
}
.input-box input
{

	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	outline: none;
	font-size: 15px;
	color: black;
	font-weight: 600;

}

.icon 
{
	position: absolute;
	font-size: 25px;
	line-height: 50spx;
	right: 8px;
}

.remember-forget
{

	font-size: 17px;
	margin: 15px;
	justify-content: space-between;
	display: flex;
	align-items: center;
}

.remember-forget label input
{

	accent-color: black;
	margin: 5px;
}

.remember-forget a
{

	font-size: 17px;
    text-decoration: none;


}

.remember-forget a:hover
{
	text-decoration: underline;
	color: red;
}


.btn 
{
	width: 100%;
	height: 40px;
	color: white;
	background: black;
	border: none;
	outline: none;
	font-size: 25px;
	border-radius: 8px;
	font-weight: 500;
	justify-content: center;
	margin: 15px;

}

.btn:hover
{

	background: white;
	color: black;
	border: 2px solid black;
}

.register p
{
	font-size: 17px;
	margin: 15px;
	color: black;
	align-items: center;
	display: flex;
	justify-content: center;

}


.register p a 
{

	text-decoration: none;

}

.register a:hover 
{

	text-decoration: underline;
	color: red;

}
