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

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: rgb(225, 225, 225);
	color: rgb(35, 35, 35);
}

/* ── Login ─────────────────────────────────────────── */

.login-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: linear-gradient(rgb(0, 132, 59) 0%, rgb(0, 132, 59) 40%, rgb(0, 102, 204) 90%, rgb(0, 102, 204) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.login-box {
	background-color: rgba(210, 210, 210, 0.82);
	border: 1px solid rgb(185, 185, 185);
	padding: 40px;
	width: 320px;
	position: relative;
	z-index: 2;
}

.login-logo {
	position: absolute;
	top: 16px;
	right: 16px;
	height: 36px;
	width: auto;
}

.login-box h1 {
	font-size: 18px;
	margin-bottom: 24px;
	color: rgb(0, 80, 155);
}

.login-box label {
	display: block;
	margin-bottom: 4px;
	color: rgb(75, 75, 75);
}

.login-box input[type="text"],
.login-box input[type="password"] {
	width: 100%;
	padding: 8px;
	margin-bottom: 16px;
	background-color: rgb(225, 225, 225);
	border: 1px solid rgb(175, 175, 175);
	color: rgb(35, 35, 35);
}

.login-box button {
	width: 100%;
	padding: 9px;
	background-color: rgb(75, 135, 215);
	color: rgb(0, 0, 0);
	border: none;
	cursor: pointer;
	font-size: 13px;
}

.login-box button:hover {
	background-color: rgb(45, 115, 205);
}

.login-version {
	font-size: 10px;
	color: rgb(145, 145, 155);
	margin-top: 14px;
	margin-bottom: 0;
	text-align: center;
}

.login-fehler {
	color: rgb(175, 35, 35);
	margin-bottom: 14px;
	font-size: 12px;
}

.login-box button:disabled {
	background-color: rgb(195, 195, 195);
	color: rgb(115, 115, 115);
	cursor: not-allowed;
}

.login-box button:disabled:hover {
	background-color: rgb(195, 195, 195);
}

/* ── Login: Cookie-Checkbox ──────────────────────────── */

.login-cookie-check {
	display: block;
	position: relative;
	padding-left: 24px;
	font-size: 11px;
	color: rgb(85, 85, 85);
	margin-bottom: 16px;
	margin-top: 4px;
	cursor: pointer;
	line-height: 1.4;
}

.login-cookie-check input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 2px;
	width: auto;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.login-cookie-check > span {
	display: block;
}

.login-cookie-link {
	color: rgb(0, 80, 155);
	text-decoration: underline;
	cursor: pointer;
}

.login-cookie-link:hover {
	color: rgb(0, 60, 115);
}

/* ── Login: Seiten-Panel für Cookie-Erklärung ────────── */

.login-stage {
	position: relative;
}

.login-cookie-info {
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 0;
	width: 340px;
	z-index: 1;
	padding: 22px 24px;
	background-color: rgba(220, 220, 220, 0.92);
	border: 1px solid rgb(185, 185, 185);
	color: rgb(55, 55, 55);
	font-size: 12px;
	line-height: 1.5;
	overflow-y: auto;
	opacity: 0;
	transform: translateX(0);
	pointer-events: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.login-cookie-info.offen {
	opacity: 1;
	transform: translateX(332px);
	pointer-events: auto;
}

.login-cookie-info h2 {
	font-size: 15px;
	color: rgb(0, 80, 155);
	margin-bottom: 14px;
	font-weight: normal;
}

.login-cookie-info p {
	margin-bottom: 12px;
}

.login-cookie-info dl {
	margin-bottom: 14px;
}

.login-cookie-info dt {
	font-weight: bold;
	color: rgb(35, 35, 35);
	margin-top: 8px;
}

.login-cookie-info dd {
	margin-left: 0;
	margin-top: 2px;
	color: rgb(85, 85, 85);
}

.login-cookie-info strong {
	color: rgb(35, 35, 35);
	font-weight: bold;
}

.login-cookie-close {
	margin-top: 6px;
	padding: 6px 14px;
	background-color: rgb(75, 135, 215);
	color: rgb(0, 0, 0);
	border: none;
	cursor: pointer;
	font-size: 12px;
}

.login-cookie-close:hover {
	background-color: rgb(45, 115, 205);
}
