*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd,
figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:root {
  --rd-bg: #f8fafc;
  --rd-surface: #ffffff;
  --rd-surface-raised: #ffffff;
  --rd-border: #e2e8f0;
  --rd-text: #0f172a;
  --rd-text-muted: #64748b;
  --rd-text-faint: #94a3b8;
  --rd-sidebar-bg: #0f172a;
  --rd-sidebar-text: rgb(228.9, 234.3, 241.5);
  --rd-sidebar-text-muted: #94a3b8;
  --rd-sidebar-active-bg: rgba(255, 255, 255, .08);
  --rd-sidebar-border: rgba(255, 255, 255, .08);
  --rd-brand: #4f46e5;
  --rd-brand-dark: #3730a3;
  --rd-brand-light: #818cf8;
  --rd-brand-contrast: #ffffff;
  --rd-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --rd-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --rd-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.18);
  --rd-success: #16a34a;
  --rd-success-bg: #dcfce7;
  --rd-warning: #d97706;
  --rd-warning-bg: #fef3c7;
  --rd-danger: #dc2626;
  --rd-danger-bg: #fee2e2;
  --rd-info: #0891b2;
  --rd-info-bg: #cffafe;
  --rd-hover-bg: rgba(15, 23, 42, .04);
  --rd-focus-ring: rgba(79, 70, 229, .25);
}

[data-theme=dark] {
  --rd-bg: #0f172a;
  --rd-surface: rgb(28.8, 39.36, 56.64);
  --rd-surface-raised: #1e293b;
  --rd-border: rgb(63.9, 76.5, 94.5);
  --rd-text: #f8fafc;
  --rd-text-muted: #cbd5e1;
  --rd-text-faint: #94a3b8;
  --rd-sidebar-bg: rgb(14.1, 21.62, 39.48);
  --rd-sidebar-text: #e2e8f0;
  --rd-sidebar-text-muted: #94a3b8;
  --rd-sidebar-active-bg: rgba(255, 255, 255, .06);
  --rd-sidebar-border: rgba(255, 255, 255, .06);
  --rd-brand: #818cf8;
  --rd-brand-dark: #4f46e5;
  --rd-brand-contrast: #0f172a;
  --rd-shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --rd-shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
  --rd-shadow-lg: 0 16px 48px rgba(0, 0, 0, .55);
  --rd-success-bg: rgba(22, 163, 74, .15);
  --rd-warning-bg: rgba(217, 119, 6, .15);
  --rd-danger-bg: rgba(220, 38, 38, .15);
  --rd-info-bg: rgba(8, 145, 178, .15);
  --rd-hover-bg: rgba(255, 255, 255, .06);
  --rd-focus-ring: rgba(129, 140, 248, .35);
}

html {
  scrollbar-gutter: stable;
  color-scheme: light dark;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  background: var(--rd-bg);
  color: var(--rd-text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--rd-text);
  line-height: 1.25;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.05rem;
}

a.link {
  color: var(--rd-brand);
  font-weight: 600;
}
a.link:hover {
  text-decoration: underline;
}

button:focus:not(:focus-visible), a:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible), [role=button]:focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, [role=button]:focus-visible {
  outline: 2px solid var(--rd-brand);
  outline-offset: 2px;
}

::selection {
  background: var(--rd-brand);
  color: var(--rd-brand-contrast);
}

.text-muted {
  color: var(--rd-text-muted);
}

.text-faint {
  color: var(--rd-text-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s, transform 0.05s;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--rd-brand);
  color: var(--rd-brand-contrast);
}
.btn--primary:hover {
  background: var(--rd-brand-dark);
}
.btn--secondary {
  background: var(--rd-surface);
  border-color: var(--rd-border);
  color: var(--rd-text);
}
.btn--secondary:hover {
  background: var(--rd-hover-bg);
}
.btn--ghost {
  background: transparent;
  color: var(--rd-text-muted);
}
.btn--ghost:hover {
  background: var(--rd-hover-bg);
  color: var(--rd-text);
}
.btn--danger {
  background: var(--rd-danger-bg);
  color: var(--rd-danger);
}
.btn--danger:hover {
  background: var(--rd-danger);
  color: #fff;
}
.btn--block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: none;
  flex-direction: column;
  width: 240px;
  flex-shrink: 0;
  background: var(--rd-sidebar-bg);
  color: var(--rd-sidebar-text);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media (min-width: 900px) {
  .sidebar {
    display: flex;
  }
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.5rem 1.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.sidebar-brand .sidebar-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  color: var(--rd-sidebar-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.12s, color 0.12s;
}
.sidebar-link:hover {
  background: var(--rd-sidebar-active-bg);
  color: #fff;
}
.sidebar-link.is-active {
  background: var(--rd-sidebar-active-bg);
  color: #fff;
}
.sidebar-link .sidebar-link-icon {
  width: 1.1rem;
  text-align: center;
  opacity: 0.85;
}

.sidebar-footer {
  border-top: 1px solid var(--rd-sidebar-border);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--rd-sidebar-text-muted);
}

.main-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--rd-surface);
  border-bottom: 1px solid var(--rd-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}
@media (min-width: 900px) {
  .topbar-mobile-brand {
    display: none;
  }
}

.topbar-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: none;
}
@media (min-width: 900px) {
  .topbar-title {
    display: block;
  }
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.topbar-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  background: var(--rd-brand);
  color: var(--rd-brand-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.page-content {
  padding: 1.5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .page-content {
    padding: 2.5rem;
  }
}

.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-header-title h1 {
  margin-bottom: 0.15rem;
}

.mobile-nav {
  display: flex;
  justify-content: space-around;
  background: var(--rd-sidebar-bg);
  border-top: 1px solid var(--rd-sidebar-border);
  padding: 0.4rem 0 calc(0.4rem + env(safe-area-inset-bottom));
  position: sticky;
  bottom: 0;
  z-index: 20;
}
@media (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--rd-sidebar-text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.mobile-nav-link.is-active {
  color: #fff;
}

.card {
  background: var(--rd-surface-raised);
  border: 1px solid var(--rd-border);
  border-radius: 16px;
  box-shadow: var(--rd-shadow-sm);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--rd-border);
}
.card-header h2, .card-header h3 {
  margin: 0;
}

.card-body {
  padding: 1.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--rd-surface-raised);
  border: 1px solid var(--rd-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--rd-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow 0.15s, transform 0.15s;
}
.stat-card:hover {
  box-shadow: var(--rd-shadow-md);
  transform: translateY(-1px);
}

.stat-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rd-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stat-card-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rd-text);
  letter-spacing: -0.02em;
}

.stat-card-hint {
  font-size: 0.8rem;
  color: var(--rd-text-faint);
}

.stat-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.stat-card-icon--indigo {
  background: rgba(79, 70, 229, 0.12);
  color: #4f46e5;
}
.stat-card-icon--blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}
.stat-card-icon--success {
  background: var(--rd-success-bg);
  color: var(--rd-success);
}
.stat-card-icon--warning {
  background: var(--rd-warning-bg);
  color: var(--rd-warning);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  background: var(--rd-hover-bg);
  color: var(--rd-text-muted);
}
.badge--success {
  background: var(--rd-success-bg);
  color: var(--rd-success);
}
.badge--warning {
  background: var(--rd-warning-bg);
  color: var(--rd-warning);
}
.badge--danger {
  background: var(--rd-danger-bg);
  color: var(--rd-danger);
}
.badge--info {
  background: var(--rd-info-bg);
  color: var(--rd-info);
}
.badge--brand {
  background: rgba(79, 70, 229, 0.12);
  color: #4f46e5;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--rd-border);
  background: var(--rd-surface-raised);
}

.data-table {
  width: 100%;
  font-size: 0.875rem;
}
.data-table th, .data-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.data-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--rd-text-muted);
  border-bottom: 1px solid var(--rd-border);
  background: var(--rd-surface);
  position: sticky;
  top: 0;
}
.data-table td {
  border-bottom: 1px solid var(--rd-border);
  color: var(--rd-text);
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table tbody tr:hover td {
  background: var(--rd-hover-bg);
}
.data-table td.cell-muted {
  color: var(--rd-text-muted);
}
.data-table td.cell-wrap {
  white-space: normal;
}

.empty-state {
  padding: 2.5rem;
  text-align: center;
  color: var(--rd-text-muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.input,
select.input {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--rd-border);
  background: var(--rd-surface-raised);
  color: var(--rd-text);
  font-size: 0.875rem;
}
.input:focus,
select.input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px var(--rd-focus-ring);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--rd-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-text);
  background: var(--rd-surface-raised);
}
.pagination-link:hover {
  background: var(--rd-hover-bg);
}
.pagination-link.is-active {
  background: var(--rd-brand);
  border-color: var(--rd-brand);
  color: var(--rd-brand-contrast);
}
.pagination-link.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-summary {
  font-size: 0.8rem;
  color: var(--rd-text-muted);
  margin-right: 0.5rem;
}

.progress-bar {
  height: 6px;
  border-radius: 9999px;
  background: var(--rd-hover-bg);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--rd-brand);
}

.kv-list {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  gap: 0.55rem 1rem;
  font-size: 0.875rem;
}
.kv-list dt {
  color: var(--rd-text-muted);
  font-weight: 600;
}
.kv-list dd {
  margin: 0;
  color: var(--rd-text);
  word-break: break-word;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.reason-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.05rem;
}
.reason-icon--ok {
  background: var(--rd-success-bg);
  color: var(--rd-success);
}
.reason-icon--no {
  background: var(--rd-danger-bg);
  color: var(--rd-danger);
}

.code-block {
  background: var(--rd-bg);
  border: 1px solid var(--rd-border);
  border-radius: 10px;
  padding: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--rd-text);
  overflow-x: auto;
  white-space: pre;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-text-muted);
  margin-bottom: 0.75rem;
}
.back-link:hover {
  color: var(--rd-text);
}

.error-code {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--rd-brand);
  line-height: 1;
  margin: 0 0 0.5rem;
}

.flash-messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.alert {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid transparent;
  background: var(--rd-hover-bg);
  color: var(--rd-text);
}
.alert--success {
  background: var(--rd-success-bg);
  color: var(--rd-success);
  border-color: rgba(22, 163, 74, 0.3);
}
.alert--warning {
  background: var(--rd-warning-bg);
  color: var(--rd-warning);
  border-color: rgba(217, 119, 6, 0.3);
}
.alert--error {
  background: var(--rd-danger-bg);
  color: var(--rd-danger);
  border-color: rgba(220, 38, 38, 0.3);
}
.alert--info {
  background: var(--rd-info-bg);
  color: var(--rd-info);
  border-color: rgba(8, 145, 178, 0.3);
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.6rem;
}

.form-inline-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-inline-field label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rd-text-muted);
  margin: 0 0 0.75rem;
}

.boundary-map {
  height: 380px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--rd-border);
  background: var(--rd-surface);
  z-index: 0;
}

.boundary-map.leaflet-container {
  font: inherit;
}

.boundary-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--rd-text-muted);
}

.boundary-legend li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.boundary-legend-swatch {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 6px;
  border: 2px solid var(--rd-brand);
  background: rgba(79, 70, 229, 0.18);
}
.boundary-legend-swatch--building {
  border-color: var(--rd-info);
  background: var(--rd-info-bg);
}
.boundary-legend-swatch--additional {
  border-color: var(--rd-warning);
  background: var(--rd-warning-bg);
}

.location-explorer-map {
  height: 520px;
}

.leaflet-control-layers {
  background: var(--rd-surface-raised);
  color: var(--rd-text);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.leaflet-control-layers-expanded {
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
}

.leaflet-control-layers-selector {
  margin-right: 0.4rem;
}

.leaflet-control-layers-separator {
  border-top: 1px solid var(--rd-border);
}

body.page-login {
  margin: 0;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.16), transparent 45%), radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.14), transparent 45%), var(--rd-bg);
}

.auth-card {
  width: 100%;
  max-width: 25rem;
  background: var(--rd-surface-raised);
  border: 1px solid var(--rd-border);
  border-radius: 16px;
  box-shadow: var(--rd-shadow-lg);
  overflow: hidden;
}

.auth-card-header {
  text-align: center;
  padding: 2.5rem 1.5rem 1rem;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.auth-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.auth-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rd-text);
}

.auth-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rd-text);
  margin: 0 0 0.3rem;
}

.auth-subtitle {
  font-size: 0.85rem;
  color: var(--rd-text-muted);
  margin: 0;
}

.auth-card-body {
  padding: 1rem 1.5rem 2.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.auth-field label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.auth-field input[type=text],
.auth-field input[type=password] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--rd-border);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--rd-text);
  background: var(--rd-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.auth-field input[type=text]:focus,
.auth-field input[type=password]:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px var(--rd-focus-ring);
}
.auth-field .field-help {
  font-size: 0.74rem;
  color: var(--rd-text-faint);
  line-height: 1.4;
}
.auth-field .field-error,
.auth-field ul.errorlist li {
  font-size: 0.78rem;
  color: var(--rd-danger);
  list-style: none;
  margin: 0;
  padding: 0;
}

.auth-errors {
  background: var(--rd-danger-bg);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
}
.auth-errors p, .auth-errors li {
  font-size: 0.82rem;
  color: var(--rd-danger);
  margin: 0;
  list-style: none;
}

.auth-submit-btn {
  margin-top: 0.25rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--rd-text-faint);
}

/*# sourceMappingURL=style.css.map */
