rustio-admin 0.19.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
/* ============================================================
 * rustio-admin / pages / auth
 *
 * Login screen โ€” narrow card centered in the viewport, full-width
 * primary submit. Recovery / MFA / sessions self-service surfaces
 * inherit the generic component styles; only the login card needs
 * a page-level shell.
 * ============================================================ */

.rio-login {
  max-width: 440px;
  margin: var(--rio-s7) auto;
  background: var(--rio-surface);
  border: 1px solid var(--rio-border);
  border-radius: var(--rio-radius-lg);
  padding: var(--rio-s6) var(--rio-s5);
  box-shadow: var(--rio-shadow-lg);
}
.rio-login-title {
  text-align: center;
  margin: 0 0 var(--rio-s4) 0;
  color: var(--rio-text-strong);
}
/* Calm intro paragraph under the title โ€” gives the form context
 * without competing with it. Wraps for ~50ch comfortable reading. */
.rio-login-intro {
  text-align: center;
  color: var(--rio-text-muted);
  font-size: var(--rio-fs-md);
  line-height: 1.6;
  margin: 0 auto var(--rio-s5) auto;
  max-width: 36ch;
}
.rio-login-footer {
  margin: var(--rio-s5) 0 0 0;
  text-align: center;
  font-size: var(--rio-fs-sm);
}
.rio-form--login .rio-button {
  width: 100%;
  justify-content: center;
  padding: 0.7rem var(--rio-s4);
}

/* ============================================================
 * Auth aside โ€” operational security panel rendered under the
 * primary form on recovery surfaces (forgot, sent, reset).
 *
 * Calm. One small dot of accent per bullet (matching DESIGN_CHROME.md
 * ยง2.2 single-point-of-emphasis rule). Surface-2 background lifts the
 * panel from the card body without competing for attention.
 * ============================================================ */

.rio-login-aside {
  margin: var(--rio-s5) 0 0 0;
  padding: var(--rio-s4) var(--rio-s4);
  background: var(--rio-surface-2);
  border: 1px solid var(--rio-border-soft);
  border-radius: var(--rio-radius);
}
.rio-login-aside__title {
  margin: 0 0 var(--rio-s3) 0;
  font-size: 11px;
  font-weight: var(--rio-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rio-text-muted);
}
.rio-login-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--rio-text);
  font-size: var(--rio-fs-sm);
  line-height: 1.6;
}
.rio-login-aside__list li {
  position: relative;
  padding-inline-start: var(--rio-s4);
  margin: 0 0 var(--rio-s2) 0;
}
.rio-login-aside__list li:last-child {
  margin-bottom: 0;
}
.rio-login-aside__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rio-accent);
  opacity: 0.65;
}