.widget-form-label {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: block;
    margin-bottom: 5px;
}

.widget-form-input,
.widget-form-textarea,
.widget-form-select {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
}

.widget-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.widget-form-error {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    line-height: var(--line-height-base);
    color: var(--color-error);
    margin-top: 5px;
}

.widget-form-input-error {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-color: var(--color-error);
}

.widget-form-required {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-error);
}

.widget-form-field-group {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 15px;
}
