/* ==========================================================
   8) Kontaktformular
========================================================== */

.form-wrapper {
    background: #fff;
    padding: 30px;
    max-width: 750px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin: auto;
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #222;
}

label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
    color: #444;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #b30000;
    box-shadow: 0 0 6px rgba(179,0,0,0.3);
}

textarea {
    height: 120px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: #b30000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

button:hover {
    background: #8a0000;
    transform: translateY(-2px);
}

#meldung {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
}


