.elementor-kit-17{--e-global-color-primary:#000000;--e-global-color-secondary:#000000;--e-global-color-text:#000000;--e-global-color-accent:#EFEDE6;--e-global-typography-primary-font-family:"Arial";--e-global-typography-primary-font-size:16px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Arial";--e-global-typography-secondary-font-size:16px;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Arial";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Arial";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:500;--e-global-typography-94d6816-font-family:"Arial";--e-global-typography-94d6816-font-size:16px;--e-global-typography-94d6816-font-weight:600;--e-global-typography-4405b24-font-family:"Arial";--e-global-typography-4405b24-font-size:40px;--e-global-typography-4405b24-font-weight:600;--e-global-typography-9a6793c-font-family:"Arial";--e-global-typography-9a6793c-font-weight:500;}.elementor-kit-17 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.wpcf7-form .hc-form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 100%;
}

.wpcf7-form .hc-form-row input[type="text"],
.wpcf7-form .hc-form-row input[type="email"],
.wpcf7-form .hc-form-row textarea {
    background: rgba(53, 122, 142, 0.05);
    border: 1px solid rgba(53, 122, 142, 0.2);
    border-radius: 20px;
    padding: 20px 28px;
    font-family: 'Righteous', sans-serif;
    font-size: 18px;
    color: #357A8E;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wpcf7-form .hc-form-row input[type="text"]:focus,
.wpcf7-form .hc-form-row input[type="email"]:focus,
.wpcf7-form .hc-form-row textarea:focus {
    background: rgba(53, 122, 142, 0.12);
    border-color: rgba(53, 122, 142, 0.6);
    box-shadow: 0 20px 40px rgba(53, 122, 142, 0.15);
    transform: translateY(-2px);
}

.wpcf7-form .hc-form-row input[type="text"]::placeholder,
.wpcf7-form .hc-form-row input[type="email"]::placeholder,
.wpcf7-form .hc-form-row textarea::placeholder {
    color: rgba(53, 122, 142, 0.4);
    font-family: 'Righteous', sans-serif;
}

.wpcf7-form .hc-form-row textarea {
    min-height: 160px;
    resize: vertical;
}

.wpcf7-form .hc-form-row input[type="submit"] {
    background: #357A8E;
    color: #EFEDE6;
    border: none;
    border-radius: 60px;
    padding: 28px 70px;
    font-size: 22px;
    font-family: 'Righteous', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wpcf7-form .hc-form-row input[type="submit"]:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 30px 60px rgba(53, 122, 142, 0.4);
    background: #EFEDE6;
    color: #357A8E;
    outline: 2px solid #357A8E;
}

.wpcf7 .wpcf7-response-output {
    font-family: 'Righteous', sans-serif;
    font-size: 16px;
    color: #357A8E;
    background: rgba(53, 122, 142, 0.05);
    border: 1px solid rgba(53, 122, 142, 0.2);
    border-radius: 20px;
    padding: 20px 28px;
    margin-top: 24px;
}
```

Und im **CF7 Formular-Tab** nur das:
```
<div class="hc-form-row">
[text* your-name placeholder "Dein Name"]
</div>

<div class="hc-form-row">
[email* your-email placeholder "Deine E-Mail-Adresse"]
</div>

<div class="hc-form-row">
[text* your-subject placeholder "Betreff"]
</div>

<div class="hc-form-row">
[textarea your-message placeholder "Deine Nachricht (optional)"]
</div>

<div class="hc-form-row">
[submit "Senden"]
</div>/* End custom CSS */