/* -----------------------------
   1. Honeypot-Feld (unsichtbar)
   ----------------------------- */
.honeypot-field {
    display: none;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

/* -----------------------------
   2. Formularfelder
   ----------------------------- */
.visforms-field input[type="text"],
.visforms-field input[type="email"],
.visforms-field textarea {
    width: 100%;
    max-width: 600px;
    padding: 8px 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.visforms-field label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

/* -----------------------------
   3. Captcha / Rechenaufgabe Styling
   ----------------------------- */
.visforms-field #captcha-label {
    font-weight: bold;
    margin-bottom: 6px;
}

/* -----------------------------
   4. Checkbox / Datenschutz
   ----------------------------- */
.visforms-field input[type="checkbox"] {
    margin-right: 6px;
}

/* -----------------------------
   5. Fehlermeldungen / Erfolgsmeldungen
   ----------------------------- */
.visforms-message.error {
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 12px;
}

.visforms-message.success {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 12px;
}

/* -----------------------------
   6. Button Styling
   ----------------------------- */
.visforms-button {
    background-color: #007bff;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.visforms-button:hover {
    background-color: #0056b3;
}

/* -----------------------------
   7. Responsive / mobile
   ----------------------------- */
@media (max-width: 768px) {
    .visforms-field input[type="text"],
    .visforms-field input[type="email"],
    .visforms-field textarea {
        width: 100%;
    }
}
