/*****************************/
/* GRUNDLAGEN                */
/*****************************/

body {
    font-family: helvetica, Arial, sans-serif;
    background: #e6f2d9;
}


/*****************************/
/* HAUPTBOX                  */
/*****************************/

.box {
    width: 80%;
    margin: 40px auto;
    background-image: url('../wolke.png');
    padding: 40px;
    border-radius: 50px;
    font-size: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

/*****************************/
/* KOPFBEREICH               */
/*****************************/

.formular-kopf {
    background-color: #ecdab2;
    margin: -20px -20px 20px -20px;
    padding: 15px 20px 12px 20px;
    border-radius: 50px;
}


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


.subtitle {
    background: #ecdab2;
    font-size: 24px;
    text-align: center;
    margin: 0 0 10px 0;
}


.hinweis {
    font-size: 18px;
    line-height: 1.4;
    margin: 5px 0 0 0;
}


/*****************************/
/* EINGABEN                  */
/*****************************/

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


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


textarea {
    resize: vertical;
}


/*****************************/
/* DSGVO                     */
/*****************************/

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


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


.checkline input[type="checkbox"] {
    width: auto;
}


/*****************************/
/* ÜBERSCHRIFTEN             */
/*****************************/

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


/*****************************/
/* BUTTON                    */
/*****************************/

button {
    display: block;
    margin: 30px auto 10px;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: #b4730b;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s ease;
}


button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.20);
}