/* /css/main.css */

body {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	background: #00897B; /* oder dein aktuelles Teal */
	color: #fff
}



.wrapper {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.center-column {
	text-align: center;
}

/* LOGINBLOCK – Klassisch, eckig, kein Verlauf, klarer Schatten */

.login-box {
	width: 600px;
	height: 300px;
	background-color: #00697B; /* hellgrau */
	padding: 40px;
	box-sizing: border-box;
	border-radius: 0; /* KEINE Rundungen */
	border: none;
	/* Schatten nach unten rechts (ca. 5px) */
	box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

	/* Inhalt */

	.login-box h1 {
		margin-top: 0;
		margin-bottom: 20px;
		font-size: 22px;
	}

	.login-box form {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.login-box label {
		text-align: left;
		font-weight: bold;
	}

	.login-box input[type="password"] {
		padding: 10px;
		font-size: 16px;
		border: 1px solid #aaa;
	}

	/* Button im nüchternen Stil */
	.login-box button {
		margin-top: 10px;
		padding: 10px;
		font-size: 16px;
		background-color: #333;
		color: #fff;
		border: 1px solid #222;
		cursor: pointer;
	}

		.login-box button:hover {
			background-color: #444;
		}

/* Fehlermeldung unterhalb */

.error-message {
	margin-top: 10px;
	color: #cc0000;
	font-weight: bold;
	font-size: 14px;
}

/* Footer */

/* Footer */

.site-footer {
	margin-top: -22px;
	text-align: center !important;
	font-size: 11px !important;
	color: #000;
	width: 100%;
}

.lang-switcher {
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 12px;
}

	.lang-switcher select {
		font-size: 12px;
		padding: 3px 6px;
	}

.hero-wrapper {
	max-width: 1200px; /* gewünschte maximale Bildbreite */
	margin: 0px auto 30px; /* oben/unten Abstand, zentriert */
}

	.hero-wrapper img {
		display: block;
		width: 80%; /* immer volle Breite des Wrappers */
		height: 80%;
	}

/* ===== AMP TOP MENU (small toolbar style) ===== */

.amp-menu-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	/* nach oben ziehen / bündig zum Sidebar-Menu */
	margin-top: 4px;
	margin-bottom: 20px;
}


.amp-menu {
	display: flex;
	gap: 8px;
	flex-wrap: nowrap; /* eine einzige Reihe */
}

.amp-btn {
	width: 120px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e5e5;
	color: #222;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	border: 1px solid #cfcfcf;
}

	.amp-btn:hover {
		background: #cfcfcf;
	}

