/* Basic CSS for styling - you would typically put this in a separate .css file */
body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #f4f4f4;
}
.login-container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 400px;
	text-align: center;
}
.login-container h2 {
	margin-bottom: 20px;
	color: #333;
}
.form-group {
	margin-bottom: 15px;
	text-align: left;
}
.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #555;
}
.form-group input[type="text"],
.form-group input[type="password"] {
	width: calc(100% - 30px);
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}
.form-group input[type="submit"] {
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
}
.form-group input[type="submit"]:hover {
	background-color: #0056b3;
}