body {
	background-color: #121212;
	color: #e0e0e0;
	font-family: 'Roboto', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.login-container {
	background-color: #1e1e1e;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	width: 100%;
	max-width: 400px;
	text-align: center; /* Center align the buttons */
}

.login-form h2 {
	text-align: center;
	margin-bottom: 24px;
	color: #e0e0e0;
}

.input-group {
	margin-bottom: 20px;
	text-align: left; /* Keep labels and inputs left-aligned */
}

.input-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #b0b0b0;
}

.input-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #444444;
	border-radius: 4px;
	background-color: #2c2c2c;
	color: #e0e0e0;
	font-size: 16px;
	box-sizing: border-box;
}

.input-group input:focus {
	outline: none;
	border-color: #bb86fc;
	box-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
}

.btn {
	display: block; /* Make the anchor tag behave like a button */
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none; /* Remove underline from the link */
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	box-sizing: border-box; /* Ensures padding doesn't affect width */
	margin-top: 10px; /* Add space between buttons */
}

.btn-primary {
	background-color: #bb86fc;
	color: #e0e0e0;
}

.btn-primary:hover {
	background-color: #a06cd5;
}

.btn-secondary {
	background-color: transparent;
	color: #bb86fc;
	border: 1px solid #bb86fc;
}

.btn-secondary:hover {
	background-color: #a06cd5;
	color: #e0e0e0;
}

.error-message {
	background-color: #d32f2f; /* A strong red for errors */
	color: #e0e0e0;
	padding: 12px;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 20px; /* Space between error and first input */
	font-size: 14px;
	font-weight: bold;
	/* Smooth transition for appearing/disappearing */
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-message.hidden {
	/* Hide the element completely */
	display: none;
}

