/* assets/css/base.css */
*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--app-font, Arial, sans-serif);
}

button, input, select, textarea{
  font-family: inherit;
}

.muted{ color: var(--muted); }

.error{ color: rgb(186, 59, 59); }
