/* CF7-Submit-Button im Stil von Flatsome "button white is-outline expand" */
.wpcf7 .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 5px 0;
    border-radius: 10px;
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: .25s ease-in-out;
}

/* Hover-Stil */
.wpcf7 .wpcf7-submit:hover {
    background: #fff !important;
    color: #333 !important;
    transform: translateY(-1px);
}


/* Gemeinsamer Stil für alle CF7 Text- & Telefon-Felder */
.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-tel {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
text-align: center;
    outline: none;
    transition: .25s ease-in-out;
}

/* Platzhalter-Stil (Name / Telefonnummer) */
.wpcf7 .wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7 .wpcf7-form-control.wpcf7-tel::placeholder {
    color: #ffffffcc;        /* leicht transparent */
    font-weight: 400;
}

/* Hover-Effekt */
.wpcf7 .wpcf7-form-control.wpcf7-text:hover,
.wpcf7 .wpcf7-form-control.wpcf7-tel:hover {
    border-color: #ffffff;
}

/* Fokus (aktive Eingabe) */
.wpcf7 .wpcf7-form-control.wpcf7-text:focus,
.wpcf7 .wpcf7-form-control.wpcf7-tel:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: #ffffff !important;
    color: #fff !important;
    transform: translateY(-1px);
}