* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: linear-gradient(135deg, #1e3c72, #2a5298);
}
.login-container {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	text-align: center;
	width: 400px;
}
.login-container h2 {
	color: #fff;
	margin-bottom: 20px;
}
.input-group {
	margin-bottom: 15px;
	text-align: left;
}
.input-group label {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 5px;
}
.input-group input {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	outline: none;
}
.login-btn {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background: #ff9800;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}
.login-btn:hover {
	background: #e68900;
}
.register-link {
	margin-top: 15px;
	color: #fff;
	font-size: 14px;
}
.register-link a {
	color: #ff9800;
	text-decoration: none;
}
.register-link a:hover {
	text-decoration: underline;
}