body {
    font-family: helvetica;
    background: #e6f2d9;
    background-size: cover;
}

.box {
	width: 40%;
	margin: 40px auto;
	background-image: url('../images/wolke.png');
	padding: 30px;
	border-radius: 50px;
	font-size: 16px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18),
    		0 10px 20px rgba(180, 115, 11, 0.18);
}

.box:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}

.formular-kopf {
	background-color: #ecdab2;
	margin: -20px -20px 20px -20px; /* zieht den Bereich bis an den Rand der Box */	
	padding: 15px 20px 12px 20px;
	border-radius: 50px;
}

.title {
    color: #b4730b;
    font-family: cursive;
	font-size: 40px;
	text-align: center;
	background: #ecdab2;
	padding: 0;
	margin: 0 0 5px 0;
}

.subtitle {
	background: #ecdab2;
	margin-bottom: 20px;
	font-size: 24px;
	margin: 0 0 10px 0;
}

.hinweis {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
	margin: 5px 0 0 0;
}

.pflicht {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

h3 {
    background: #e6f2d9;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
}

/*****************************/
/* EINGABEBEREICH            */ 
/*****************************/

.stern {
    font-size: 1.2em;
    font-weight: bold;
    color: #f8262f;
}

input, textarea {
	width: 100%;
	margin: 5px 0 10px;
	padding: 8px;
	font-size: 16px;
	color: black;
}

.checkline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkline:has(input[type="radio"]) {
display: inline-flex;
margin-right: 25px;
}

.checkline input[type="checkbox"],
.checkline input[type="radio"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 0;
    transform: none; 		/* WICHTIG: erstmal ohne Skalierung testen */
}

.checkline span {
    display: inline-block;
    line-height: 1.4;
}

.ds {
    margin-top: 25px;
    padding-top: 15px;
	font-size: 16px;
    border-top: 3px solid rgba(180, 115, 11, 0.35);
}

/*****************************/
/* SENDEN                    */ 
/*****************************/

button {
    margin-top: 25px;
    padding: 14px 35px;
    background-color: #c28b0b;   /* tiefes Ockergelb */
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.error-summary {
	display: none;
	background: #ffe6e6;
	border: 2px solid #f8262f;
	color: #a80000;
	padding: 15px 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.5;
}

.error-summary ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.error-summary.show {
    display: block;
}

.honeypot {
    position: absolute;
    left: -9999px;
}


