	.pw-box {
		max-width: 500px;
		margin: 80px auto;
		background: #fff7e6;
		padding: 40px;
		border-radius: 12px;
		text-align: center;
		border: 2px solid #f2d7a6;
		box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	}
	.pw-box h1 {
		color: #c46a1b;
		margin-bottom: 20px;
	}
	.pw-box input {
		width: 100%;
		padding: 12px;
		margin-bottom: 15px;
		border-radius: 6px;
		border: 1px solid #d8c4a3;
		font-size: 1rem;
	}
	.info {
		color: #2e7d32;
		font-weight: bold;
		margin-bottom: 20px;
	}
	/* Darkmode – Passwort vergessen */
	body.dark .pw-box {
		background: #1a1a1a !important;
		border-color: #444 !important;
		color: #ddd !important;
	}
	/* Überschreibt braune/orange Texte */
	body.dark .pw-box h1,
	body.dark .pw-box h2,
	body.dark .pw-box p,
	body.dark .pw-box a {
		color: #ddd !important;
	}
	/* Inputs */
	body.dark .pw-box input[type="email"] {
		background: #2a2a2a !important;
		border-color: #555 !important;
		color: #eee !important;
	}
	/* Info-Meldung */
	body.dark .pw-box .info {
		color: #7dff7d !important; /* helles Grün */
	}
	/* Buttons (falls global nicht schon geregelt) */
	body.dark .btn-primary {
		background: #c46a1b !important;
		border-color: #c46a1b !important;
		color: #fff !important;
	}
	body.dark .btn-secondary {
		background: #333 !important;
		border-color: #555 !important;
		color: #ddd !important;
	}
	body.dark .btn-ghost {
		background: transparent !important;
		border-color: #666 !important;
		color: #ccc !important;
	}