/* ─── BASE – Readwoods ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #141512;
  --bg-dark:    #191f14;
  --bg-card:    #2b1414;
  --bg-panel:   #212c12;
  --border:     rgba(111, 143, 80, 0.28);
  --text-light: #1f2e20;
  --text-muted: #5d6f58;
  --accent:     #222a1c;
  --accent2:    #181c18;
  --accent3:    #212220;
  --danger:     #1c1616;
  --radius:     12px;
  --shadow:     0 10px 24px rgba(40, 72, 30, 0.14);
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans:  'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-logo {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  border-radius: 8px;
  overflow: hidden;
}

.site-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: rgba(10, 14, 11, 0.9);
  border-bottom: 1px solid rgba(130, 156, 118, 0.24);
  backdrop-filter: blur(10px);
}

/* Keep shared page chrome comfortably inset from the viewport edges. The tree
   workspace has its own navigation and intentionally does not use this class. */
.nav.site-nav {
  padding-inline: clamp(64px, 6vw, 104px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.nav__name {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #f6fbff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__links a {
  color: #cbdeef;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__cta,
.nav__tree-link,
.nav__stats-link,
.nav__dashboard-link {
  background: rgba(87, 201, 122, 0.16);
  border: 1px solid rgba(87, 201, 122, 0.42);
  color: #91eba4;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 800;
}

.nav-menu,
.nav-profile {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 10px;
  margin-block: -10px;
}

.nav-menu__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nav-dropdown-arrow {
  width: 7px;
  height: 7px;
  margin-left: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.78;
  transform: translateY(-2px) rotate(45deg);
}

.nav-profile > .nav-dropdown-arrow {
  margin-left: 9px;
  color: #dbece0;
}

.nav-menu__panel,
.nav-profile__panel {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 250;
  min-width: 190px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(130, 156, 118, 0.28);
  border-radius: 8px;
  background: rgba(12, 18, 13, 0.97);
  box-shadow: 0 18px 38px rgba(5, 10, 6, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-menu__panel {
  left: 0;
  right: auto;
}

.nav-menu__panel::before,
.nav-profile__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-menu:hover .nav-menu__panel,
.nav-menu:focus-within .nav-menu__panel,
.nav-profile:hover .nav-profile__panel,
.nav-profile:focus-within .nav-profile__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu__panel a,
.nav-profile__panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #dbece0;
  white-space: nowrap;
}

.nav-menu__panel a:hover,
.nav-profile__panel a:hover {
  background: rgba(95, 143, 63, 0.18);
  color: #ffffff;
}

.user-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  box-sizing: border-box;
  overflow: visible;
  border: 2px solid rgba(244, 218, 151, 0.9);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff6cf, #dfe9c8 46%, #486a36 100%);
  color: #1a2a16;
  text-decoration: none;
  box-shadow:
    0 0 0 3px rgba(82, 112, 65, 0.8),
    0 8px 20px rgba(28, 45, 22, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.user-avatar:hover,
.user-avatar:focus-visible {
  border-color: #e2af2e;
  box-shadow:
    0 0 0 3px rgba(143, 191, 117, 0.9),
    0 10px 24px rgba(35, 62, 28, 0.28);
  transform: translateY(-1px) scale(1.04);
  outline: none;
}

.user-avatar__symbol {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 3px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.user-avatar__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.user-avatar__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav__links .user-avatar,
.community-nav__links .user-avatar {
  padding: 0;
  margin-left: 4px;
}

.profile-page {
  min-height: calc(100vh - 74px);
  padding: 112px 22px 52px;
  background:
    linear-gradient(135deg, rgba(244, 236, 211, 0.95), rgba(218, 233, 215, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(226, 175, 46, 0.22), transparent 34%);
  color: #1e2b1a;
}

.profile-panel,
.profile-form {
  width: min(100%, 760px);
  margin: 0 auto;
}

.profile-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 22px;
}

.profile-preview {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #fff7d7, #b9d7a7 52%, #40612f);
  box-shadow: 0 18px 34px rgba(40, 72, 30, 0.22);
}

.profile-preview span {
  font-size: 3.35rem;
  line-height: 1;
}

.profile-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-copy h1 {
  margin: 5px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.profile-copy p:last-child {
  max-width: 560px;
  color: #52604d;
  line-height: 1.6;
}

.profile-identity {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.profile-identity h1 {
  margin-top: 0;
}

.profile-handle {
  color: #5c6b56;
  font-weight: 600;
}

.profile-edit-link {
  margin-top: 4px;
  border: 1px solid rgba(66, 107, 48, 0.38);
  border-radius: 999px;
  color: #315423;
  padding: 7px 15px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.profile-edit-link:hover,
.profile-edit-link:focus-visible {
  background: rgba(95, 143, 63, 0.12);
  outline: none;
}

.profile-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
}

.profile-metrics div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.profile-metrics dt {
  color: #5c6b56;
  font-size: 0.9rem;
  order: 2;
}

.profile-metrics dd {
  color: #26331f;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.profile-created {
  margin-top: 14px;
  color: #687b62;
  font-size: 0.9rem;
}

.profile-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(91, 116, 68, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(40, 72, 30, 0.13);
}

.profile-form label,
.avatar-picker legend {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: #26331f;
}

.field-optional {
  color: #687b62;
  font-size: 0.86em;
  font-weight: 400;
}

.profile-form input[type="text"],
.profile-form input[type="url"],
.profile-form textarea {
  width: 100%;
  border: 1px solid rgba(91, 116, 68, 0.32);
  border-radius: 8px;
  background: #fffdf7;
  color: #1e2b1a;
  font: inherit;
  padding: 11px 12px;
  outline: none;
}

.profile-form input[type="text"]:focus,
.profile-form input[type="url"]:focus,
.profile-form textarea:focus {
  border-color: #5f8f3f;
  box-shadow: 0 0 0 3px rgba(95, 143, 63, 0.18);
}

.avatar-picker {
  border: 0;
}

.avatar-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.avatar-choice {
  min-height: 112px;
  place-items: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(91, 116, 68, 0.26);
  border-radius: 8px;
  background: #fffdf7;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.avatar-choice:hover {
  transform: translateY(-2px);
  border-color: #5f8f3f;
  box-shadow: 0 10px 22px rgba(40, 72, 30, 0.13);
}

.avatar-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.avatar-choice:has(input:checked) {
  border-color: #e2af2e;
  background: linear-gradient(145deg, #fff8dc, #e7f2dc);
  box-shadow: 0 0 0 3px rgba(226, 175, 46, 0.22);
}

.avatar-choice__symbol {
  font-size: 2.25rem;
  line-height: 1;
}

.avatar-choice__label {
  font-size: 0.86rem;
  color: #52604d;
}

.profile-message {
  border: 1px solid rgba(95, 143, 63, 0.34);
  border-radius: 8px;
  background: rgba(95, 143, 63, 0.12);
  color: #28451e;
  padding: 10px 12px;
  font-weight: 700;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stats-grid,
.badge-grid {
  width: min(100%, 760px);
  margin: 28px auto 0;
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.badge-card {
  border: 1px solid rgba(91, 116, 68, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(40, 72, 30, 0.12);
}

.stat-card {
  padding: 24px;
}

.stat-card__value {
  display: block;
  color: #426b30;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
}

.stat-card h2,
.badge-card h2 {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.stat-card p,
.badge-card p {
  margin-top: 8px;
  color: #5c6b56;
  line-height: 1.5;
}

.badge-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  filter: grayscale(1);
  opacity: 0.58;
}

.badge-card--earned {
  border-color: rgba(202, 151, 25, 0.52);
  background: linear-gradient(135deg, rgba(255, 250, 224, 0.92), rgba(232, 243, 222, 0.9));
  filter: none;
  opacity: 1;
}

.badge-card__icon {
  font-size: 2.5rem;
  text-align: center;
}

.badge-card__status {
  border-radius: 999px;
  background: rgba(82, 99, 76, 0.12);
  color: #52634c;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-card--earned .badge-card__status {
  background: rgba(95, 143, 63, 0.17);
  color: #315423;
}

@media (max-width: 720px) {
  .nav.site-nav {
    padding-inline: 24px;
  }

  .user-avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .profile-page {
    padding: 100px 14px 36px;
  }

  .profile-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-preview {
    margin: 0 auto;
  }

  .profile-copy p:last-child {
    margin: 0 auto;
  }

  .profile-identity {
    align-items: center;
    text-align: left;
  }

  .profile-metrics {
    justify-content: center;
  }

  .profile-form {
    padding: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .badge-card {
    grid-template-columns: 48px 1fr;
  }

  .badge-card__status {
    grid-column: 2;
    justify-self: start;
  }

  .avatar-picker__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Donations ── */
.donations-page {
  min-height: 100vh;
  padding: 118px 22px 64px;
  background:
    radial-gradient(circle at 12% 16%, rgba(204, 165, 73, 0.14), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(95, 143, 63, 0.16), transparent 30%),
    linear-gradient(150deg, #152015, #0c130e 68%);
  color: #eef6eb;
}

.donations-hero,
.treecred-card,
.donation-options {
  width: min(100%, 820px);
  margin-inline: auto;
}

.donations-hero { padding-block: 22px 36px; }

.donations-hero h1 {
  max-width: 700px;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.08;
}

.donations-hero > p:last-child {
  max-width: 600px;
  margin-top: 18px;
  color: #b8c9b5;
  font-size: 1.05rem;
  line-height: 1.65;
}

.treecred-card,
.donation-options {
  border: 1px solid rgba(156, 190, 132, 0.25);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(37, 57, 34, 0.94), rgba(21, 33, 23, 0.96));
  box-shadow: 0 22px 48px rgba(3, 8, 4, 0.3);
}

.treecred-card { padding: clamp(24px, 5vw, 40px); }

.treecred-card__heading,
.treecred-title-row,
.treecred-breakdown,
.donation-link {
  display: flex;
  align-items: center;
}

.treecred-card__heading {
  justify-content: space-between;
  gap: 24px;
}

.treecred-title-row {
  gap: 10px;
}

.treecred-title-row h2,
.donation-options h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.treecred-help { position: relative; }

.treecred-help summary {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 198, 110, 0.68);
  border-radius: 50%;
  color: #f2d787;
  cursor: help;
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.treecred-help summary::-webkit-details-marker { display: none; }

.treecred-help summary:focus-visible {
  outline: 3px solid rgba(231, 198, 110, 0.32);
  outline-offset: 3px;
}

.treecred-help__popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(320px, calc(100vw - 44px));
  padding: 16px;
  border: 1px solid rgba(231, 198, 110, 0.3);
  border-radius: 10px;
  background: #101a12;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  color: #dce8d8;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity var(--transition), transform var(--transition);
}

.treecred-help__popover ul { margin: 8px 0 8px 18px; }

.treecred-help[open] .treecred-help__popover,
.treecred-help:hover .treecred-help__popover,
.treecred-help:focus-within .treecred-help__popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.treecred-balance {
  color: #f4d67d;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

.treecred-balance span {
  margin-right: 4px;
  font-size: 0.45em;
  vertical-align: top;
}

.treecred-breakdown {
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(156, 190, 132, 0.2);
  color: #b8c9b5;
}

.treecred-breakdown strong { color: #f4f8f1; }

.treecred-breakdown > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6f9759;
}

.donation-options {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 40px);
}

.donation-options__intro > p:last-child {
  max-width: 610px;
  margin-top: 10px;
  color: #b8c9b5;
  line-height: 1.6;
}

.donation-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.donation-link {
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(231, 198, 110, 0.3);
  border-radius: 12px;
  background-color: #162019;
  background-position: center;
  background-size: cover;
  color: #f1f7ee;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.donation-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 6, 0.05) 24%, rgba(5, 10, 6, 0.9) 100%);
  transition: background var(--transition);
}

.donation-link--save-redwoods {
  background-image: url("../img/donation-save-redwoods.af999e1de946.jpg");
}

.donation-link--redwood-parks {
  background-image: url("../img/donation-redwood-parks.82fc93120f80.jpg");
}

.donation-link:hover,
.donation-link:focus-visible {
  border-color: #e7c66e;
  outline: none;
  transform: translateY(-2px);
}

.donation-link:hover::before,
.donation-link:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 10, 6, 0) 16%, rgba(5, 10, 6, 0.82) 100%);
}

.donation-link__content,
.donation-link__arrow {
  position: relative;
  z-index: 1;
}

.donation-link strong,
.donation-link small { display: block; }

.donation-link strong {
  font-family: var(--font-serif);
  font-size: 1rem;
}

.donation-link small {
  margin-top: 7px;
  color: #aebfab;
  line-height: 1.35;
}

.donation-link__arrow {
  color: #e7c66e;
  font-size: 1.25rem;
}

.donation-note {
  margin-top: 18px;
  color: #8fa18d;
  font-size: 0.85rem;
}

@media (max-width: 680px) {
  .donations-page { padding: 96px 14px 42px; }

  .treecred-card__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .treecred-help__popover {
    left: -42px;
    transform: translate(0, 5px);
  }

  .treecred-help[open] .treecred-help__popover,
  .treecred-help:hover .treecred-help__popover,
  .treecred-help:focus-within .treecred-help__popover {
    transform: translate(0, 0);
  }

  .donation-links { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #edc996, #e2af2e);
  color: #111010;
  box-shadow: 0 6px 16px rgba(95, 143, 63, 0.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #5f8f3f, #e2af2e);
  box-shadow: 0 8px 18px rgba(95, 143, 63, 0.34);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(123, 170, 77, 0.14);
  border-color: var(--accent);
}
.btn--danger {
  background: var(--danger);
  color: #fff;
}
.btn--danger:hover { background: #efcaca; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; border-radius: 10px; }
.btn--sm { padding: 5px 12px; font-size: 0.8rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #e2f2d5; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.auth-card {
  width: min(100%, 460px);
  border: 1px solid rgba(151, 176, 201, 0.25);
  background: rgba(17, 25, 35, 0.92);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35);
}

.auth-back {
  display: inline-flex;
  margin-top: 12px;
  color: #9dd5ff;
  text-decoration: none;
  font-size: 0.88rem;
}

.auth-back:hover {
  color: #d5ecff;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f6fbff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
}

.auth-card h1 {
  margin: 12px 0 8px;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.2;
}

.auth-sub {
  color: #a8bbcf;
  margin-bottom: 18px;
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  font-size: 0.87rem;
  font-weight: 600;
  color: #d5e6f6;
  margin-top: 2px;
}

.auth-form input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(150, 178, 203, 0.34);
  background: rgba(7, 12, 17, 0.7);
  color: #eef8ff;
  font-size: 0.95rem;
  padding: 11px 12px;
  outline: none;
}

.auth-form input:focus {
  border-color: #67cc88;
  box-shadow: 0 0 0 2px rgba(87, 201, 122, 0.2);
}

.auth-submit {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.auth-meta {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #aac0d5;
}

.auth-meta a {
  color: #9dd5ff;
  text-decoration: none;
}

.auth-message {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.auth-message a {
  color: #d9f0ff;
}

.auth-message--ok {
  background: rgba(78, 198, 120, 0.18);
  border: 1px solid rgba(87, 201, 122, 0.45);
  color: #bff3cf;
}

.auth-message--error {
  background: rgba(224, 91, 91, 0.14);
  border: 1px solid rgba(224, 91, 91, 0.45);
  color: #ffd6d6;
}

.field-error {
  color: #ffb7b7;
  font-size: 0.8rem;
  margin-top: -4px;
}
