*{
	padding: 0;
	margin: 0;
	font-family: Arial, sans-serif;
}
body{
	background: whitesmoke;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-container label{
	display: block;
}
.form-container{
	padding: 50px 60px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgb(0, 0, 0, 0.4);
}
h2{
	margin-bottom: 30px;
	color:#4682B4;
}
.logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
label{
	line-height: 40px;
	font-size: 16px;
	color: #0E1E16;
}
.input{
	width: 100%;
	padding: 14px 12px;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid  #ccc;
}
button{
	width: 100%;
	padding: 14px 12px;
	border-radius: 8px;
	border: none;
	font-weight: bold;
	background: #4682B4;
	color: whitesmoke;
}
button:hover{
	opacity: 0.8;
	cursor: pointer;
}
.con{
	text-align: center;
	color: #ccc;
}
.condition{
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 7px;
	background: whitesmoke;
	display: flex;
}
.link{
	display: block;
	justify-content: center;
	align-items: center;
}
a{
	text-decoration: none;
	text-align: center;
	color: black;
}
p{
	text-align: center;
	font-weight: 300;
	color: #;
}
.none{
	display: none;
}
@media(max-width:768px){
	.form-container{
		width: 50%;
	}
	h2{
		text-align: center;
		font-size: 13px;
	}
	label{
		font-size: 12px;
		line-height: 30px;
	}
	.condition{
		font-size: 13px;
	}
	.forgot{
		font-size: 10px;
	}
	.con{
		display: none;
		.none{
			display: block;
		}
	}
}