rustio-admin 0.10.1

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: 400px;
  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-bottom: var(--rio-s5);
  color: var(--rio-text-strong);
}
.rio-form--login .rio-button {
  width: 100%;
  justify-content: center;
  padding: 0.7rem var(--rio-s4);
}