#loeschify-simple-contact-form {
    max-width: 800px;
    margin: 20px auto;
    background-color: #0B214D;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#loeschify-simple-contact-form h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
    color: #FFFFFF;
}

#loeschify-simple-contact-form p {
    text-align: center;
    margin-bottom: 25px;
    color: #b0bec5;
}

#loeschify-simple-contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* GEMEINSAMER STIL FÜR ALLE FORMULARFELDER */
#loeschify-simple-contact-form input,
#loeschify-simple-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: #102f69;
    color: #ffffff;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; /* Stellt sicher, dass die Schriftart konsistent ist */
}

#loeschify-simple-contact-form input::placeholder,
#loeschify-simple-contact-form textarea::placeholder {
    color: #b0bec5;
}

#loeschify-simple-contact-form #simple-contact-company-search,
#loeschify-simple-contact-form textarea {
    margin-bottom: 15px;
}

/* SPEZIELLER STIL FÜR DAS TEXTFELD */
#loeschify-simple-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

#loeschify-simple-contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    background-color: #DDF047;
    color: #0B214D;
    cursor: pointer;
    transition: all 0.3s ease;
}

#loeschify-simple-contact-form button:disabled {
    background-color: #4a5a94;
    cursor: not-allowed;
}

#loeschify-simple-contact-form button:not(:disabled):hover {
    background-color: #c9dc3e;
}

#simple-form-success-message {
    text-align: center;
    padding: 20px;
    background-color: #DDF047;
    color: #0B214D;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #loeschify-simple-contact-form .form-row {
        flex-direction: column;
        margin-bottom: 0;
    }
    #loeschify-simple-contact-form .form-row input {
        margin-bottom: 15px;
    }
}
