/**
 * Kontaktformular Feedback-Styles
 * Diese Datei in main.css einbinden oder separat laden
 */

/* Feedback-Container */
.form-message {
    padding: 1em 1.5em;
    margin-bottom: 1.5em;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

/* Honeypot-Feld verstecken */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}
