.cf-form {
    width: 100%;
    max-width: 100%;
    font-family: inherit;
}

.cf-field {
    margin-bottom: 24px;
}

.cf-field label {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: #0f1317;
    margin-bottom: 8px;
}

.cf-field > label {
    color: #0f1317;
}

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="url"],
.cf-field textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 19px;
    font-family: inherit;
    color: #0f1317;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bdc5d0;
    outline: none;
    transition: border-color 0.3s ease;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: #bdc5d0;
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-bottom-color: #0f1317;
}

.cf-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot verstecken */
.cf-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Checkbox */
.cf-checkbox {
    margin-bottom: 32px;
}

.cf-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.cf-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0f1317;
    cursor: pointer;
}

.cf-checkbox span {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.cf-checkbox a {
    color: #0f1317;
    text-decoration: underline;
}

.cf-checkbox a:hover {
    opacity: 0.7;
}

/* Submit Button */
.cf-submit {
    text-align: right;
}

.cf-submit button {
    display: inline-block;
    padding: 0;
    font-size: 21px;
    font-family: inherit;
    font-weight: 500;
    color: #0f1317;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cf-submit button:hover {
    opacity: 0.6;
}

.cf-submit button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Status Meldungen */
.cf-status {
    margin-top: 20px;
    padding: 20px 24px;
    font-size: 16px;
    text-align: center;
    display: none;
}

.cf-status.success {
    display: block;
    background: transparent;
    color: #0f1317;
    border: 1px solid #bdc5d0;
}

.cf-status.error {
    display: block;
    background: transparent;
    color: #991b1b;
    border: 1px solid #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
    .cf-field {
        margin-bottom: 20px;
    }

    .cf-submit {
        text-align: left;
    }
}
