/* Form wrapper */
.wsf-form {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}
/* Field labels */
.wsf-label {
    display: block;
    font-size: var(--text-m) !important;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-body) !important;
}

/* Text inputs & textarea */
.wsf-field-wrapper input.wsf-field,
.wsf-field-wrapper textarea.wsf-field,
.wsf-field-wrapper select.wsf-field {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-body) !important;
    width: 100%;
    padding: var(--space-2xs) var(--space-2xs) !important;
    border: 1px solid var(--border-primary) !important;
    border-radius: var(--radius-s) !important;
    font-size: var(--text-m) !important;
    transition: border-color 0.3s !important;
    background-color: var(--light) !important;
}

/* Focus effect */
.wsf-field-wrapper input.wsf-field:focus,
.wsf-field-wrapper textarea.wsf-field:focus,
.wsf-field-wrapper select.wsf-field:focus {
    outline: none;
}
/* Flatpickr input style */
.wsf-field-wrapper input.js-flatpickr {
    cursor: pointer;
}

/* Optional: adjust Flatpickr calendar */
.flatpickr-calendar {
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* Submit button */
.wsf-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-xs) var(--space-s) !important;
    background: var(--primary) !important;
    color: var(--light);
    font-size: var(--text-m) !important;
    font-weight: 600;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-m) !important;
    cursor: pointer;
    transition: all 0.25s ease-in-out !important;
}

/* Hover / Active */
.wsf-button:hover {
    background: var(--secondary) !important;
    border: 2px solid var(--secondary) !important;
    color: var(--light) !important;
    transform: translateY(-0.1rem);
}

.wsf-button:active {
    transform: translateY(0);
}
/* Validation errors */
.wsf-invalid-feedback {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 4px;
}
/* For small screens, stack fields */
@media (max-width: 768px) {
    .wsf-extra-small-6 {
        width: 100% !important;
    }
}
/* GDPR checkbox */
.wsf-field-wrapper input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}