body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #f4f4f4;
	color: #333;
}
.login-container {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
}
h2 {
	color: #007bff;
	margin-bottom: 20px;
}
label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	text-align: left;
}
input[type='password'] {
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
button {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}
button:hover {
	background-color: #0056b3;
}
.error-message {
	color: red;
	margin-top: 10px;
}


