.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg);
  }
  .auth-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, #128F67 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: #fff;
  }
  .auth-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
  }
  .auth-hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
.auth-brand-mark {
    width: 100px;
    /* height: 44px; */
    /* border-radius: 12px; */
    /* background: linear-gradient(135deg, var(--accent), #FF6B3D); */
    /* display: grid; */
    /* place-items: center; */
    /* box-shadow: 0 6px 16px rgba(255,138,91,.4); */
}
  .auth-brand-mark svg { width: 24px; height: 24px; }
  .auth-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .auth-brand-text b { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: #fff; }
  .auth-brand-text span { font-size: 11px; letter-spacing: .12em; color: #8FB6AB; text-transform: uppercase; margin-top: 2px; }
  
  .auth-hero-content { relative: true; max-width: 520px; z-index: 2; }
  .auth-hero-content h1 { font-size: 38px; color: #fff; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 16px; }
  .auth-hero-content p { font-size: 16px; color: rgba(255,255,255,.85); line-height: 1.6; }
  
  .auth-hero-footer { font-size: 12.5px; color: rgba(255,255,255,.65); z-index: 2; }
  
  .auth-box-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
  }
  .auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
  }
  .auth-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
  .auth-card p { font-size: 13.5px; color: var(--text-2); margin-bottom: 24px; }
  
  @media (max-width: 860px) {
    .auth-page { grid-template-columns: 1fr; }
    .auth-hero { display: none; }
  }
