@import url("./brand-logo-motion.css");

/* Shared auth / account — black & white */
:root {
  --void: #050505;
  --ink: #0a0a0a;
  --line: rgba(255, 255, 255, 0.12);
  --mute: #a3a3a3;
  --paper: #fafafa;
  --red: #d4d4d4;
  --red-hot: #e5e5e5;
  --magenta: #737373;
  --link: #d4d4d4;
  --link-hover: #fafafa;
  --card: rgba(8, 8, 8, 0.92);
  --card-edge: rgba(255, 255, 255, 0.08);
  --input-fill: rgba(8, 8, 8, 0.85);
  --input-stroke: rgba(255, 255, 255, 0.16);
  --btn-radius: 0.75rem;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", var(--font);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font);
  background: var(--void);
  color: var(--mute);
}
body.auth-body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  color-scheme: dark;
}
body.auth-body a { color: var(--link); }
body.auth-body a:hover { color: var(--link-hover); }
body.auth-body .brand em { color: var(--red-hot); }
.wrap { max-width: 26rem; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
h1 {
  font-family: var(--display);
  color: var(--paper);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}
.sub { font-size: 0.9rem; margin: 0 0 1.5rem; line-height: 1.5; }
.brand { display: inline-block; font-family: var(--display); font-weight: 800; color: var(--paper); text-decoration: none; margin-bottom: 2rem; }
.brand em { font-style: normal; color: var(--red-hot); }
label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a9aa3;
  margin: 0.9rem 0 0.35rem;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--input-fill);
  color: var(--paper);
  font-size: 0.95rem;
}
input:focus { outline: none; border-color: rgba(255, 255, 255, 0.35); }
.hint { font-size: 0.75rem; color: #6b6b76; margin: 0.2rem 0 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--red);
  border-color: var(--red);
  color: #0a0a0a;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line); margin-top: 0.75rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.err {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
  font-size: 0.86rem;
}
.err li { margin: 0.15rem 0; list-style: none; }
.err li + li { margin-top: 0.35rem; }
.ok {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
  margin-bottom: 1rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.86rem;
}
.foot { margin-top: 1.5rem; font-size: 0.8rem; }
.account-box {
  border: 1px solid var(--line);
  background: var(--input-fill);
  padding: 1rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.account-box code { color: #e5e5e5; word-break: break-all; }
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 60%, rgba(255, 255, 255, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--void);
}
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 35%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 35%, #000 12%, transparent 72%);
}
main { position: relative; z-index: 1; }

/* —— Centered auth card (modern / modal-style) —— */
.auth-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 5vh, 2.5rem) 1.25rem;
  box-sizing: border-box;
}
.auth-page > main,
.auth-container {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  flex: 0 0 auto;
}
.auth-card {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border: 1px solid var(--card-edge);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 20px 50px rgba(0, 0, 0, 0.45);
  padding: 2.25rem 2rem 1.75rem;
  box-sizing: border-box;
}
.auth-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.auth-brand-txt {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--paper);
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}
.auth-brand-txt em { font-style: normal; color: var(--red-hot); }
.auth-card-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 0.55rem;
  padding: 0.12rem;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.auth-card-mark:hover { background: rgba(255, 255, 255, 0.05); }
.auth-card-mark img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}
.auth-card .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.auth-card .brand-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
.auth-card .brand-word { line-height: 1.1; }
/* Legacy: some pages used SVG in .brand-icon; keep hidden if present */
.auth-card .brand-icon {
  width: 2rem;
  height: 2rem;
  display: none;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(15, 15, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e5e5;
  flex-shrink: 0;
}
.auth-card h1 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--paper);
}
.auth-lead {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.auth-lead strong {
  color: var(--paper);
  font-weight: 600;
}
.auth-lead strong em {
  font-style: normal;
  color: var(--link);
  font-weight: 700;
}
.auth-hint {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #7c7c88;
  margin: 0 0 0.75rem;
}
.auth-hint a { font-weight: 600; }
.field-group {
  margin-bottom: 0;
}
.auth-card .field-group + .field-group {
  margin-top: 1.1rem;
}
.auth-card .field-group label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d5db;
  font-weight: 500;
}
.auth-card .field-group label.auth-label-sentence {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.78rem;
  font-weight: 600;
}
/* Icon + input in one control */
.field-row {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  align-items: center;
  column-gap: 0.55rem;
  min-height: 2.85rem;
  border: 1px solid var(--input-stroke);
  border-radius: var(--btn-radius);
  background: var(--input-fill);
  padding: 0 0.75rem 0 0.7rem;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
  color-scheme: dark;
}
.field-row:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.field-row--pw {
  grid-template-columns: 1.35rem 1fr 2.5rem;
  padding-right: 0.35rem;
}
.field-row .field-ico {
  color: #6b7280;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.field-row .field-ico svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.field-row input[type="email"],
.field-row input[type="password"],
.field-row input[type="text"] {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.65rem 0.2rem;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  color: var(--paper);
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.field-row input::placeholder {
  color: #6b7280;
}
.field-row input:focus {
  outline: none;
  border: none;
  box-shadow: none !important;
}
/* Autofill / forced light backgrounds — keep text inside the dark field shell */
.field-row input:-webkit-autofill,
.field-row input:-webkit-autofill:hover,
.field-row input:-webkit-autofill:focus,
.field-row input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--input-fill) inset !important;
  box-shadow: 0 0 0 1000px var(--input-fill) inset !important;
  -webkit-text-fill-color: var(--paper) !important;
  caret-color: var(--paper);
  transition: background-color 99999s ease-out;
}
.field-pw-toggle {
  justify-self: end;
  align-self: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.12s, background 0.12s;
}
.field-pw-toggle:hover { color: var(--paper); background: rgba(255, 255, 255, 0.06); }
.field-pw-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 1px;
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1.15rem 0 0.25rem;
  flex-wrap: wrap;
}
.auth-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d1d5db;
  cursor: pointer;
  user-select: none;
}
.auth-check input {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 4px;
  accent-color: var(--red-hot);
  cursor: pointer;
}
.forgot-link {
  font-size: 0.8rem;
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}
.forgot-link:hover { text-decoration: underline; color: var(--link-hover); }
.btn-gradient {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin-top: 1.25rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: var(--btn-radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  background: linear-gradient(160deg, #737373 0%, #525252 100%);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  text-transform: none;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  transition: filter 0.15s, transform 0.1s, box-shadow 0.15s;
}
.btn-gradient:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.btn-gradient:active { transform: scale(0.99); }
.btn-gradient:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.auth-foot-row {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #9ca3af;
}
.auth-foot-row a { font-weight: 600; }
.auth-back {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.auth-back a {
  color: var(--link);
  font-weight: 500;
}
.auth-back a:hover { color: var(--link-hover); }
/* Register: wide immersive layout — uses most of the viewport */
.auth-page--register {
  justify-content: flex-start;
  align-items: stretch;
  flex: 1;
  width: 100%;
  max-width: none;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  min-height: 100svh;
  min-height: 100dvh;
  box-sizing: border-box;
}
.auth-page--register > main.auth-container,
.auth-page--register > .auth-container {
  width: 100%;
  max-width: min(56rem, 100%);
  margin-inline: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.auth-container--wide {
  max-width: min(56rem, 100%);
}
.auth-card--register {
  max-width: none;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: min(100%, calc(100dvh - 5rem));
  border-radius: 1.35rem;
  padding: clamp(1.35rem, 2.8vw, 2.35rem) clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.85rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.055) 0%, transparent 42%),
    var(--card);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 255, 255, 0.06);
}
.auth-page--register .auth-card--register > form {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.auth-card--wide { max-width: 28rem; }
body.auth-body--register .grid-bg {
  background:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(255, 255, 255, 0.26), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 45%, rgba(20, 184, 166, 0.14), transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 85%, rgba(94, 234, 212, 0.1), transparent 48%),
    var(--void);
}
.auth-page--register .auth-card--register h1 {
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  letter-spacing: -0.035em;
}
.auth-card--register .auth-lead--tight {
  margin-bottom: 1rem;
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
  line-height: 1.65;
}
@media (max-width: 479px) {
  .auth-card--register {
    min-height: auto;
  }
}

/* —— Login layout (frail-style structure, Lurking.Me pink aura theme) —— */
body.auth-login-layout .lowercase {
  text-transform: lowercase;
}

.auth-login-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 1.25rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .auth-login-shell {
    padding: 1.5rem;
  }
}

.auth-login-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0.25rem auto 0;
  max-width: 26rem;
  text-align: center;
  color: var(--link);
  text-transform: none;
}
.auth-login-promo-strong {
  color: var(--paper);
  font-weight: 600;
}
.auth-login-promo-ico {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.95;
  color: var(--red-hot);
}

.auth-login-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.auth-login-wrap {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.auth-card--login {
  padding: 2rem 1.75rem 1.75rem;
  margin: 0 auto;
}

.auth-login-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.auth-login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 0.75rem;
  transition: opacity 0.15s;
}
.auth-login-logo:hover {
  opacity: 0.9;
}
.auth-login-logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.auth-login-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 0.15rem;
}
.auth-card--login h1.auth-login-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 1.65rem);
  line-height: 1.2;
  margin: 0;
  color: var(--paper);
  letter-spacing: -0.03em;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}
.auth-login-sub {
  margin: 0;
  font-size: 1rem;
  color: #9ca3af;
}
.auth-login-sub a {
  font-weight: 600;
}
.auth-login-muted {
  color: var(--mute);
}

.auth-login-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.15rem;
}

.auth-login-oauth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--paper);
  background: var(--input-fill);
  border: 1px solid var(--input-stroke);
  border-radius: 1rem;
  cursor: pointer;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.auth-login-oauth:hover {
  background: rgba(8, 8, 8, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}
.auth-login-oauth:active {
  transform: translateY(1px);
}
.auth-login-oauth-ico {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.auth-login-sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.auth-login-sep-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-login-sep-text {
  font-size: 0.875rem;
  color: #9ca3af;
  white-space: nowrap;
}

.auth-login-flash {
  margin: 0;
}
.auth-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
}

body.auth-login-layout .auth-login-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  text-transform: none;
  letter-spacing: 0;
}
body.auth-login-layout .auth-login-pw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
body.auth-login-layout .auth-login-pw-head .auth-login-label {
  margin: 0;
}
body.auth-login-layout .auth-login-forgot {
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

body.auth-login-layout .auth-card--login .field-group + .field-group {
  margin-top: 0;
}

body.auth-login-layout .auth-login-field {
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  border-width: 1px;
  grid-template-columns: 1fr;
}
body.auth-login-layout .auth-login-field .field-ico {
  display: none;
}
body.auth-login-layout .auth-login-field.field-row--pw {
  grid-template-columns: 1fr 2.25rem;
  padding-right: 0.35rem;
}
body.auth-login-layout .auth-login-field:focus-within {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
body.auth-login-layout .auth-login-field input {
  padding: 0.65rem 0.15rem;
  font-size: 1rem;
}
body.auth-login-layout .auth-login-pw-toggle {
  border-radius: 999px;
  width: 1.75rem;
  height: 1.75rem;
}
body.auth-login-layout .auth-login-pw-toggle:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

body.auth-login-layout .auth-login-remember {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: -0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #9ca3af;
  cursor: pointer;
  user-select: none;
}
body.auth-login-layout .auth-login-remember input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--red-hot);
  cursor: pointer;
}

body.auth-login-layout .auth-card--login .btn-gradient.auth-login-submit {
  margin-top: 0.35rem;
  min-height: 2.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
}

.auth-login-homefoot {
  text-align: center;
  margin: 1.35rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
}
.auth-login-homefoot a {
  color: var(--link);
  font-weight: 500;
  text-decoration: none;
}
.auth-login-homefoot a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
