/* Modern Clean WS Form Styling */
.wsf-form-1 {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wsf-form-1 .wsf-field-wrapper {
    margin-bottom: 20px;
}

.wsf-form-1 label.wsf-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.wsf-form-1 input[type="text"],
.wsf-form-1 input[type="email"],
.wsf-form-1 textarea.wsf-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #f9fafb;
    color: #111827;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.wsf-form-1 input[type="text"]:focus,
.wsf-form-1 input[type="email"]:focus,
.wsf-form-1 textarea.wsf-field:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wsf-form-1 textarea.wsf-field {
    min-height: 120px;
    resize: vertical;
}

.wsf-form-1 button[type="submit"].wsf-button {
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

.wsf-form-1 button[type="submit"].wsf-button:hover {
    background-color: #2563eb;
}

/* Checkbox styling */
.wsf-form-1 .wsf-field-type-checkbox .wsf-custom-control-label {
    font-size: 13px;
    color: #6b7280;
    padding-left: 8px;
}
