
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #F6FAFF;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
}

.login-container {
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	padding: 40px;
	width: 100%;
	max-width: 400px;
	border: 1px solid #DDE5EF;
}

.login-header {
	text-align: center;
	margin-bottom: 30px;
}

.login-header h1 {
	color: #D93831;
	font-size: 2em;
	margin-bottom: 10px;
}

.login-header p {
	color: #64748B;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #0F172A;
	font-weight: 600;
}

.form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #DDE5EF;
	border-radius: 8px;
	font-size: 1em;
	transition: border-color 0.2s;
}

.form-group input:focus {
	outline: none;
	border-color: #3386E3;
}

.error-message {
	background: #FEE2E2;
	color: #DC2626;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.9em;
	display: none; /* Hidden by default, shown only when there's a message */
}

/* Success message styling */
.success-message {
	background: #DCFCE7;
	color: #15803D;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.9em;
	display: none; /* Hidden by default, shown only when there's a message */
}

.login-button {
	width: 100%;
	padding: 12px;
	background: #3386E3;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.login-button:hover {
	background: #2a6bc7;
}

.login-button:disabled {
	background: #94A3B8;
	cursor: not-allowed;
}