body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-center a {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 2rem;
	display: inline-block;
}

.text-center a .accent {
	color: #ffdd57;
}

.login-container {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	width: 100%;
	max-width: 400px;
}

.login-container h1 {
	margin: 0 0 1.5rem;
	font-size: 1.8rem;
	color: #333333;
	text-align: center;
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	color: #555555;
}

.form-group input {
	width: 100%;
	padding: 0.65rem 0.8rem;
	font-size: 1rem;
	border: 1px solid #cccccc;
	border-radius: 4px;
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-group input:focus {
	outline: none;
	border-color: #2575fc;
	box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.2);
}

.btn {
	width: 100%;
	padding: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	background-color: #2575fc;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.btn:hover,
.btn:focus {
	background-color: #1e5dcc;
}

.registration {
	text-align: center;
	margin-top: 1.2rem;
}

.registration a {
	font-size: 0.95rem;
	color: #2575fc;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.registration a:hover {
	color: #1e5dcc;
	text-decoration: underline;
}

.error-message {
	margin-top: 1rem;
}

.error-message .alert {
	padding: 0.75rem 1rem;
	border-radius: 4px;
	font-size: 0.95rem;
	margin-bottom: 0.6rem;
}

.alert.error {
	background-color: #f8d7da;
	color: #721c24;
	border-left: 4px solid #f5c6cb;
}

.alert.success {
	background-color: #d4edda;
	color: #155724;
	border-left: 4px solid #c3e6cb;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.login-container {
		padding: 1.5rem;
		margin: 0 1rem;
	}

	.text-center a {
		font-size: 2rem;
	}
}