.insyde-form {
    width: 100%;
}

.insyde-form .insyde-form-hinweis {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
}

.insyde-form .insyde-form-hinweis span,
.insyde-form label span {
    color: #000;
}

.insyde-form .insyde-form-row {
    margin-bottom: 24px;
}

.insyde-form .insyde-form-row-2 {
    display: flex;
    gap: 30px;
}

.insyde-form .insyde-form-col {
    width: 100%;
}

.insyde-form .insyde-form-row-2 .insyde-form-col {
    width: 50%;
}

.insyde-form label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #1f1f1f;
}

.insyde-form input[type="text"],
.insyde-form input[type="email"],
.insyde-form input[type="tel"],
.insyde-form input[type="date"],
.insyde-form select,
.insyde-form textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.insyde-form textarea {
    min-height: 220px;
    resize: vertical;
}

.insyde-form input[type="text"]:focus,
.insyde-form input[type="email"]:focus,
.insyde-form input[type="tel"]:focus,
.insyde-form input[type="date"]:focus,
.insyde-form select:focus,
.insyde-form textarea:focus {
    outline: none;
    border-color: #9C571A;
    box-shadow: 0 0 0 1px #9C571A;
}

.insyde-form .insyde-form-checkbox .wpcf7-list-item {
    margin: 0;
}

.insyde-form .insyde-form-checkbox .wpcf7-list-item-label {
    display: inline;
}

.insyde-form .insyde-form-checkbox input[type="checkbox"] {
    margin-right: 10px;
    transform: translateY(1px);
}

.insyde-form .insyde-form-checkbox a {
    color: #9C571A;
    text-decoration: underline;
}

.insyde-form .insyde-form-submit-row {
    margin-top: 10px;
    margin-bottom: 0;
}

.insyde-form .insyde-form-submit,
.insyde-form input[type="submit"].insyde-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    border: 1px solid #9C571A;
    background: #9C571A;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.insyde-form .insyde-form-submit:hover,
.insyde-form input[type="submit"].insyde-form-submit:hover {
    background: #7f4514;
    border-color: #7f4514;
    color: #fff;
}

.insyde-form .wpcf7-spinner {
    margin: 15px 0 0 12px;
}

.insyde-form .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 14px;
}

.insyde-form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .insyde-form .insyde-form-row-2 {
        display: block;
        gap: 0;
    }

    .insyde-form .insyde-form-row-2 .insyde-form-col {
        width: 100%;
        margin-bottom: 24px;
    }

    .insyde-form .insyde-form-row-2 .insyde-form-col:last-child {
        margin-bottom: 0;
    }
}