.sssf-form-wrapper {
    --sssf-border: #d9dee5;
    --sssf-text: #1f2933;
    --sssf-muted: #5b6875;
    --sssf-accent: #1f6f8b;
    --sssf-accent-hover: #195a71;
    --sssf-success-bg: #edf8f0;
    --sssf-success-text: #21633a;
    --sssf-error-bg: #fff1f0;
    --sssf-error-text: #a32929;
    --sssf-warning-bg: #fff8e6;
    --sssf-warning-text: #8a6116;
    color: var(--sssf-text);
}

.sssf-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sssf-field,
.sssf-field input,
.sssf-field textarea {
    width: 100%;
}

.sssf-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--sssf-text);
    font-weight: 600;
}

.sssf-field input,
.sssf-field textarea {
    border: 1px solid var(--sssf-border);
    border-radius: 12px;
    padding: 12px 14px;
    line-height: 1.5;
    background: #fff;
    color: inherit;
}

.sssf-field textarea {
    resize: vertical;
    min-height: 150px;
}

.sssf-field-full {
    grid-column: 1 / -1;
}

.sssf-actions button {
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    background: var(--sssf-accent);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sssf-actions button:hover,
.sssf-actions button:focus {
    background: var(--sssf-accent-hover);
}

.sssf-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
}

.sssf-notice-success {
    background: var(--sssf-success-bg);
    color: var(--sssf-success-text);
}

.sssf-notice-error {
    background: var(--sssf-error-bg);
    color: var(--sssf-error-text);
}

.sssf-notice-warning {
    background: var(--sssf-warning-bg);
    color: var(--sssf-warning-text);
}

@media (max-width: 767px) {
    .sssf-form-grid {
        grid-template-columns: 1fr;
    }

    .sssf-field-full {
        grid-column: auto;
    }
}
