	.reg-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);
	}
	.reg-box h1 {
		color: #c46a1b;
		margin-bottom: 20px;
	}
	.reg-box input {
		width: 100%;
		padding: 12px;
		margin-bottom: 15px;
		border-radius: 6px;
		border: 1px solid #d8c4a3;
		font-size: 1rem;
	}
	.error { color: red; font-weight: bold; margin-bottom: 15px; }
	.success { color: green; font-weight: bold; margin-bottom: 15px; }
	
	/* Darkmode – Registrieren-Seite */
	body.dark .reg-box {
		background: #1a1a1a !important;
		border-color: #444 !important;
		color: #ddd !important;
	}
	/* Überschreibt braune/orange Texte */
	body.dark .reg-box h1,
	body.dark .reg-box h2,
	body.dark .reg-box h4,
	body.dark .reg-box p,
	body.dark .reg-box a,
	body.dark .reg-box label {
		color: #ddd !important;
	}
	/* Inputs */
	body.dark .reg-box input[type="text"],
	body.dark .reg-box input[type="email"],
	body.dark .reg-box input[type="password"] {
		background: #2a2a2a !important;
		border-color: #555 !important;
		color: #eee !important;
	}
	/* Fehlermeldung */
	body.dark .reg-box .error {
		color: #ff6b6b !important;
	}
	/* Erfolgsmeldung */
	body.dark .reg-box .success {
		color: #7dff7d !important;
	}
	/* 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;
	}