* {
	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;
}

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;
	}
}

.tabs {
	display: flex;
	gap: 10px;
	justify-content: center;
	/* oder flex-end */
	margin: 0 0 18px 0;
}

.tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: none;
	border-radius: 14px;
	background: #e9ecf1;
	color: #2b2f36;
	font-weight: 700;
	cursor: pointer;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	transition: background .15s ease, transform .02s ease;
}

.tab-btn:hover {
	background: #dde2ea;
}

.tab-btn:active {
	transform: translateY(1px);
}

.tab-btn.active {
	background: #8b929d;
	color: #fff;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}