.auth-body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #f1f5f9;
}

.auth-container {
	width: 100%;
	max-width: 420px;
	padding: 20px;
}

.auth-card {
	background: white;
	border-radius: 8px;
	padding: 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}

.auth-title {
	margin: 0 0 4px 0;
	font-size: 22px;
	font-weight: 600;
	color: #1e293b;
	text-align: center;
}

.auth-subtitle {
	margin: 0 0 24px 0;
	font-size: 14px;
	font-weight: 400;
	color: #64748b;
	text-align: center;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auth-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.auth-field label {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.auth-field input {
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
	color: #1e293b;
	background: white;
	transition: border-color 0.15s;
}

.auth-field input:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-hint {
	font-size: 12px;
	color: #94a3b8;
}

.auth-button {
	padding: 10px 16px;
	background: #007cba;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.15s;
	margin-top: 4px;
}

.auth-button:hover {
	background: #005a87;
}

.auth-button:disabled {
	background: #94a3b8;
	cursor: not-allowed;
}

.auth-error {
	background: #fef2f2;
	color: #991b1b;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #fecaca;
	font-size: 13px;
	margin-bottom: 16px;
}

.auth-success {
	background: #f0fdf4;
	color: #166534;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #bbf7d0;
	font-size: 13px;
	margin-bottom: 16px;
}

.auth-info {
	background: #f0f9ff;
	color: #075985;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #bae6fd;
	font-size: 13px;
	margin-bottom: 16px;
}

.auth-link {
	text-align: center;
	margin: 20px 0 0 0;
	font-size: 13px;
	color: #64748b;
}

.auth-link a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

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