<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	/* background: #f0f2f5; */
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.login-container {
	max-width: 400px;
	margin: 40px auto 20px auto;
	padding: 2rem;
	background: #111;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.login-container img {
	display: block;
	margin: 0 auto 20px;
	max-height: 60px;
}

.login-container h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #fff;
}

.error-message {
	background: #ffe0e0;
	color: #b30000;
	padding: 0.75rem;
	border: 1px solid #ffb3b3;
	border-radius: 8px;
	margin-bottom: 1rem;
	text-align: center;
}

.warning-message {
		background: #fff8e1;  /* Light yellow background */
		color: #996600;       /* Dark golden text */
		padding: 0.75rem;
		border: 1px solid #ffdd99;  /* Soft orange-yellow border */
		border-radius: 8px;
		margin-bottom: 1rem;
		text-align: center;
}

.success-message {
		background: #e0ffe0;  /* Light green background */
		color: #006600;       /* Dark green text */
		padding: 0.75rem;
		border: 1px solid #b3ffb3;  /* Light green border */
		border-radius: 8px;
		margin-bottom: 1rem;
		text-align: center;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #999;
}

.form-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.form-group input:focus {
	border-color: #1e90ff;
	outline: none;
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.form-options label {
	font-size: 0.9rem;
	color: #999;
}

.form-options a {
	text-decoration: none;
	font-size: 0.9rem;
	color: #1e90ff;
}

.login-button {
	width: 100%;
	padding: 0.75rem;
	background: #1e90ff;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1rem;
	cursor: pointer;
}

.login-button:hover {
	background: #147bd1;
}

.register-link {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #888;
	text-decoration: none;
}

.register-link a {
	color: #1e90ff;
	text-decoration: none;
}
	
.footer-text {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: #888;
}</pre></body></html>