body{
	background:linear-gradient(135deg,#0d3b66,#1d3557);
	height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:'Segoe UI';
}

.forgot-container{
	width:100%;
	max-width:400px;
}

.forgot-card{
	background:#fff;
	padding:35px;
	border-radius:18px;
	box-shadow:0 15px 40px rgba(0,0,0,.2);
	animation:fadeUp .6s;
}

@keyframes fadeUp{
	from{
		opacity:0;
		transform:translateY(20px);
	}
	to{
		opacity:1;
		transform:translateY(0);
	}
}

.form-control{
	border-radius:10px;
	height:45px;
}
