
body {
	background: #407bff;
	color: #fff;
	font-family: 'Montserrat', Arial, sans-serif;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 120px;
	margin-bottom: 24px;
}
h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 2px;
}
.desc {
	font-size: 1.2rem;
	max-width: 400px;
	text-align: center;
	margin-bottom: 32px;
}
.features {
	background: rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 20px 32px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	color: #fff;
	font-size: 1rem;
	margin-bottom: 24px;
}
nav {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}
.login-btn {
	background: linear-gradient(90deg, #407bff 0%, #4fd1ff 100%);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 14px 36px;
	text-decoration: none;
	transition: box-shadow 0.2s, transform 0.2s;
	box-shadow: 0 4px 16px rgba(64,123,255,0.12);
	cursor: pointer;
	letter-spacing: 1px;
	outline: none;
}
.login-btn:hover {
	box-shadow: 0 6px 24px rgba(64,123,255,0.18);
	transform: translateY(-2px) scale(1.04);
	background: linear-gradient(90deg, #4fd1ff 0%, #407bff 100%);
}
