  
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; min-height: 100%; }
  body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--body);
    font-size: var(--t-body);
    line-height: 1.55;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  a { color: inherit; }
  .wordmark {
    font-family: var(--display);
    font-weight: 600;
    font-size: 26px;
    color: var(--text);
    position: relative;
    padding-inline-start: 22px;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 28px;
  }
  .wordmark::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 11px; height: 11px;
    background: var(--forest); border-radius: 50%;
  }

  .auth-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 40px 44px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(28,35,54,0.04);
  }
  .auth-card h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: var(--t-h2);
    line-height: 1.15;
    margin: 0 0 6px;
  }
  .lede {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 26px;
  }
  /* .field / .field-label / .input come from base.css (UX-1). */
  .submit-btn {
    display: block;
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    border: 1px solid var(--forest);
    border-radius: 10px;
    padding: 13px;
    font-family: var(--body);
    font-weight: 500;
    font-size: var(--t-body);
    cursor: pointer;
    margin-top: 22px;
    transition: background 120ms;
  }
  .submit-btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
  .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

  .below {
    text-align: center;
    margin-top: 20px;
    font-size: var(--t-small);
    color: var(--text-muted);
  }
  .below a { color: var(--forest); font-weight: 500; }

  .wrap { text-align: center; }
