.sf-form-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.sf-form-wrapper * {
    box-sizing: border-box;
}

.sf-grid-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.sf-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0 7.5px;
}

@media (max-width: 767px) {
    .sf-form-group {
        width: 100% !important;
    }
}

/* Labels */
.sf-field-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333333;
}

.sf-required {
    color: #ff3b30;
    margin-left: 3px;
}

/* Input fields */
.sf-input-field {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    background-color: #fcfcfc;
    border: 1px solid #dddddd;
    border-radius: 4px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    outline: none;
}

.sf-input-field:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sf-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox / Radio */
.sf-choices-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0;
}

.sf-choice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.sf-choice-input {
    margin: 0;
    cursor: pointer;
}

.sf-choice-label {
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

/* Footer / button */
.sf-form-footer {
    margin-top: 24px;
    padding: 0 7.5px;
}

.sf-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #3b82f6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.sf-submit-btn:hover {
    background-color: #2563eb;
}

.sf-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

/* Spinner */
.sf-btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: sf-spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes sf-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Meldingen */
.sf-form-message {
    margin: 16px 7.5px 0 7.5px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.sf-form-message.sf-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.sf-form-message.sf-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* =========================================================
 * CLOUDFLARE TURNSTILE
 * ========================================================= */

.sf-turnstile-wrapper {
    width: 100%;
    padding: 0 7.5px;
    margin-top: 20px;
    margin-bottom: 0;
}

.sf-turnstile-wrapper .cf-turnstile {
    max-width: 100%;
}
/* =========================================================
   YILMAZ SMART FORM — TURNSTILE MOBILE SPACING
   ========================================================= */

@media (max-width: 767px) {

    .cf-turnstile,
    .smart-form .cf-turnstile {
        margin-top: 22px !important;
        margin-bottom: 10px !important;
    }

}