body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
	text-align: center;
}

.logo {
	margin-bottom: 20px;
}

.logo img {
	width: 100px;
	/* Adjust size as needed */
	height: auto;
}

h2 {
	margin-bottom: 20px;
	color: #333;
}

label {
	display: block;
	margin-bottom: 8px;
	color: #555;
	text-align: left;
}

input[type="email"],
input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type="submit"] {
	background-color: #5cb85c;
	color: #fff;
	border: none;
	padding: 10px;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
}

input[type="submit"]:hover {
	background-color: #4cae4c;
}

.error-message {
	color: red;
	text-align: center;
	margin-bottom: 20px;
}