* { font-family: 'Inter', sans-serif; box-sizing: border-box; }
body {
	background: #f9fafb;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
.container {
	max-width: 920px;
	width: 100%;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: row;
	overflow: hidden;
}
.illustration {
	width: 45%;
	background: #eef2ff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.illustration img {
	width: 100%;
	max-width: 280px;
}
.login-area {
	width: 55%;
	padding: 40px;
}
.tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
	flex-wrap: wrap;
	justify-content: center;
}
.tabs a {
	padding: 10px 18px;
	border-radius: 8px;
	background: #e5e7eb;
	color: #111827;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s;
}
.tabs a:hover { background: #d1d5db; }
.tabs a.active {
	background: #9ca3af;
	color: white;
}
h2 {
	margin: 0 0 24px 0;
	font-size: 22px;
	font-weight: 600;
	color: #111827;
	text-align: center;
}
input[type="email"],
input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 16px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
}
button {
	width: 100%;
	padding: 10px;
	background: #6b7280;
	color: white;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}
.info-links {
	margin-top: 12px;
	font-size: 14px;
	text-align: center;
	color: #6b7280;
}
.info-links a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}
.error {
	color: red;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 768px) {
	.container { flex-direction: column; }
	.illustration, .login-area { width: 100%; }
	.illustration { display: none; }
}