			.wrapper {
				width: 90%;
				max-width: 700px;
				margin: 40px auto;
			}
			.title {
				text-align: center;
				font-size: 2rem;
				margin-bottom: 25px;
				color: #5a3e1b;
			}
			body.dark .title { color: #fff; }

			.form-box {
				background: #fff7e6;
				border: 2px solid #f2d7a6;
				border-radius: 10px;
				padding: 20px;
				box-shadow: 0 4px 0 rgba(0,0,0,0.25);
				transition: 0.25s ease;
			}
			.form-box:hover {
				background: #ffefcc;
				transform: translateY(-6px);
				box-shadow:
					0 10px 0 rgba(0,0,0,0.25),
					0 14px 18px rgba(0,0,0,0.15);
			}
			body.dark .form-box {
				background: #222;
				border-color: #444;
				box-shadow: 0 4px 0 rgba(255,255,255,0.15);
			}
			body.dark .form-box:hover {
				background: #2c2c2c;
			}
			label {
				font-weight: bold;
				color: #5a3e1b;
			}
			body.dark label { color: #fff; }

			input, textarea {
				width: 100%;
				padding: 10px;
				margin-top: 6px;
				margin-bottom: 16px;
				border-radius: 6px;
				border: 1px solid #c9b28a;
			}
			body.dark input, body.dark textarea {
				background: #333;
				color: #fff;
				border-color: #666;
			}
			.btn-creme {
				background: #5a3e1b;
				color: #fff;
				padding: 12px 20px;
				border-radius: 6px;
				border: none;
				cursor: pointer;
				font-weight: bold;
				transition: 0.2s ease;
				width: 100%;
			}
			.btn-creme:hover {
				background: #7a5630;
			}
			.btn-link-creme {
				display: inline-block;
				background: #fff7e6;
				color: #5a3e1b;
				padding: 10px 16px;
				border-radius: 6px;
				font-weight: 600;
				text-decoration: none;
				border: 1px solid #d8c4a3;
				box-shadow: 0 2px 0 rgba(0,0,0,0.15);
				transition: 0.2s ease;
				min-width: 150px;
				text-align: center;
			}
			.btn-link-creme:hover {
				background: #ffefcc;
				transform: translateY(-3px);
				box-shadow:
					0 6px 0 rgba(0,0,0,0.15),
					0 10px 14px rgba(0,0,0,0.12);
			}
			.button-row {
				display: flex;
				justify-content: center;
				gap: 12px;
				margin-top: 25px;
			}
			.meldung {
				text-align: center;
				font-weight: bold;
				margin-bottom: 20px;
				color: green;
			}