/* kontakt.css */

#contactForm {
    max-width: 720px;
    margin: 0 auto;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Labels */
#contactForm label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 600;
    color: #004d26;
}

/* Inputs / Select / Textarea */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],   /* 👈 HIER */
#contactForm select,
#contactForm textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px;
    border: 1px solid #bdddcc;
    border-radius: 10px;
    background: #f6fbf8;
    color: #004d26;
    font-size: 16px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#contactForm textarea {
    resize: vertical;
    min-height: 140px;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #6c757d;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: #008f5a;
    box-shadow: 0 0 0 4px rgba(0, 143, 90, 0.15);
}

/* Button (nutzt deinen Vereinsgrün-Look) */
#contactForm button[type="submit"] {
    width: 100%;
    margin-top: 16px;
    background: #008f5a;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.05s ease, background 0.15s ease;
}

#contactForm button[type="submit"]:hover {
    background: #006837;
}

#contactForm button[type="submit"]:active {
    transform: translateY(1px);
}

/* Kleine Info-Zeile */
#formHint {
    text-align: center;
}

.cf-turnstile {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 380px) {
    .cf-turnstile {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

