body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
.header {
	background-color: #753776;
	width: 100%;
	padding: 10px 20px;
	color: white;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	text-align: center;
}
.logo-container {
	display: inline-block;
	padding: 10px;
	background-color: white;
	border-radius: 50px;
	margin: 0 auto;
}
.logo-container img {
	border-radius: 10px; /* Reduced border-radius */
	width: 60px; /* Reduced size */
}
.content {
	background-color: white;
	padding: 20px;
	margin-top: 20px; /* Adjusted margin to accommodate smaller header */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	width: 300px;
}
h1 {
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}
form {
	display: flex;
	flex-direction: column;
}
label {
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
}
input[type="text"],
input[type="password"] {
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
}
button[type="submit"] {
	padding: 10px;
	background-color: #81b7b4;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.error {
	color: red;
	margin-bottom: 15px;
	text-align: center;
}