/*
Form primitives.
Business validation stays in PHP/services; this file only controls presentation.
*/

.erp-form-grid {
    display: grid;
    gap: var(--erp-gap-md, 12px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.erp-field-wide {
    grid-column: 1 / -1;
}

.erp-required::after {
    color: var(--theme-error-text, #991b1b);
    content: " *";
    font-weight: 700;
}

