body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f3f8fc; /* Light pastel blue background */
}
.auth-container {
	background-color: #ffffff; /* White background */
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	width: 600px;
}
.auth-container h1 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #333;
}
.auth-container input {
	width: 90%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}
.auth-container button {
	width: 50%;
	padding: 10px;
	background-color: #848484;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
}
.auth-container button:hover {
	background-color: #045FB4; /* Darker blue */
}
.auth-container p {
	margin-top: 10px;
	color: #f00; /* Error text color */
	font-size: 0.9rem;
}