/* ===========================
   KONTAKTSEITE – FORMULAR
   =========================== */
/* Kontaktseite: Text und Elemente sauber zentrieren */
.kontakt-page .kontakt-page-wrapper,
.kontakt-page .kontakt-page-header,
.kontakt-page .kontakt-form-block,
.kontakt-page .kontakt-info-block {
    text-align: left; /* oder center, wenn du willst */
    margin-left: auto;
    margin-right: auto;
}

/* Wrapper für das Formular */
.kontakt-form-block {
    max-width: 480px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Überschrift */
.kontakt-form-block h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

/* Labels */
.kontakt-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* Inputs & Textarea */
.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #0099ff;
    box-shadow: 0 0 0 3px rgba(0,153,255,0.15);
    outline: none;
}

/* Button */
.kontakt-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #0077cc;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.kontakt-btn:hover {
    background: #005fa3;
}

.kontakt-btn:active {
    transform: scale(0.98);
}

/* Erfolgsmeldung */
#kontaktErfolg {
    background: #e8f9e8;
    border-left: 4px solid #2ecc71;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
    color: #2d7a3f !important;
}
