.auth-container {
	max-width: 450px;
	margin: 4rem auto;
	padding: 3rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-header {
	text-align: center;
	margin-bottom: 2rem;
}

.auth-header h1 {
	color: #1e3c72;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.auth-header p {
	color: #666;
	font-size: 1rem;
}

.auth-form {
	width: 100%;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: 500;
	font-size: 0.95rem;
}

.form-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
	outline: none;
	border-color: #2a5298;
	box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-group .helptext {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.85rem;
	color: #666;
}

.form-group .errorlist {
	list-style: none;
	padding: 0;
	margin: 0.25rem 0 0 0;
}

.form-group .errorlist li {
	color: #dc3545;
	font-size: 0.85rem;
}

.btn-primary {
	width: 100%;
	padding: 0.875rem;
	background: #2a5298;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	margin-bottom: 1rem;
}

.btn-primary:hover {
	background: #1e3c72;
}

.auth-links {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e0e0e0;
}

.auth-links a {
	color: #2a5298;
	text-decoration: none;
	font-weight: 500;
}

.auth-links a:hover {
	text-decoration: underline;
}

.messages {
	margin-bottom: 1.5rem;
}

.alert {
	padding: 0.875rem 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}