/* extracted from apps/portal/login.html */
body { min-height: 100dvh; display: flex; flex-direction: column; }
    .auth {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr;
      min-height: 100dvh;
    }
    @media (min-width: 960px) {
      .auth { grid-template-columns: 1.1fr 1fr; }
    }
    .auth__media {
      position: relative;
      min-height: 40dvh;
      color: var(--paper);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.75rem clamp(1.5rem, 4vw, 3rem);
      overflow: hidden;
      isolation: isolate;
    }
    .auth__media-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(180deg, rgba(15,14,12,0.20) 0%, rgba(15,14,12,0.0) 40%, rgba(15,14,12,0.55) 100%),
        url('../../shared/photos/city-pano.jpg');
      background-size: cover;
      background-position: center;
    }
    .auth__media-grain {
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      opacity: 0.55;
      mix-blend-mode: overlay;
      pointer-events: none;
    }
    @media (min-width: 960px) { .auth__media { min-height: 100dvh; } }
    .auth__brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .auth__brand .nav__logo { color: var(--paper); font-size: 1.1rem; }
    .auth__brand .nav__lang { color: var(--paper); border-color: rgba(250,248,243,0.4); }
    .auth__quote {
      max-width: 30rem;
      font-family: var(--serif);
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      line-height: 1.2;
      font-style: italic;
    }
    .auth__quote small {
      display: block;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      font-style: normal;
      margin-top: 1.25rem;
      opacity: 0.8;
    }
    .auth__panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
      background: var(--paper);
    }
    .auth__inner { width: 100%; max-width: 28rem; margin: 0 auto; }
    .auth__title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.4vw, 2.75rem);
      line-height: 1.1;
      letter-spacing: -0.005em;
      margin: 1rem 0 0.75rem;
    }
    .auth__sub {
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
    }
    .token-input {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: end;
      padding: 1rem 0 0.85rem;
      border-bottom: 1px solid var(--ink);
    }
    .token-input input {
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2vw, 1.65rem);
      color: var(--ink);
      padding: 0;
      letter-spacing: 0.08em;
      width: 100%;
    }
    .token-input input::placeholder { color: var(--line); }
    .meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
      font-size: 0.85rem;
    }
    .meta-row a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
    .trust-row {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px dashed var(--line);
      font-size: 0.78rem;
      color: var(--mute);
    }
    .trust-row span { display: inline-flex; align-items: center; gap: 0.5rem; }
    .auth__foot {
      margin-top: auto;
      padding-top: 2rem;
      font-size: 0.78rem;
      color: var(--mute);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .auth__foot a { color: inherit; text-decoration: none; }
    .auth__foot a:hover { color: var(--ink); }
