/* Reset visual base do ERP R&S. */
/* Remove inconsistências entre navegadores antes dos estilos de layout. */

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

button,
input,
textarea,
select { font: inherit; }

button { border: none; cursor: pointer; }
button:disabled { cursor: not-allowed; }
