/* VenueOS — Auth styles */

    /* Staff auth screen — VenueOS neutral branding (no client affiliation pre-login) */
    .venue-os-auth-screen {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: linear-gradient(180deg, #0d0d14 0%, #1a1a2e 100%);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .venue-os-auth-preview-banner {
      font-size: 0.8rem;
      line-height: 1.45;
      color: rgba(240,235,226,.92);
      background: rgba(212, 184, 114, 0.12);
      border: 1px solid rgba(212, 184, 114, 0.35);
      border-radius: 12px;
      padding: 12px 14px;
      margin: 0 0 20px;
    }
    .venue-os-auth-preview-banner strong { color: #e8d9a8; }
    a.venue-os-auth-preview-link {
      color: #d4b872;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    a.venue-os-auth-preview-link:hover { color: #e8d9a8; }

    .venue-os-auth-box {
      width: 100%;
      max-width: 380px;
      background: #111118;
      border-radius: 20px;
      padding: 40px 32px 32px;
      box-shadow: 0 20px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.06);
    }
    .venue-os-auth-crest {
      width: 96px;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 50%;
      opacity: 0.95;
    }
    .venue-os-auth-title {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #f0ebe2;
      text-align: center;
      margin: 0 0 6px;
      letter-spacing: 0.04em;
    }
    .venue-os-auth-subtitle {
      font-size: 0.85rem;
      color: rgba(240,235,226,.45);
      text-align: center;
      margin: 0 0 28px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .venue-os-auth-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .venue-os-auth-tab {
      flex: 1;
      padding: 10px 16px;
      border: none;
      background: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(240,235,226,.5);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.2s, border-color 0.2s;
    }
    .venue-os-auth-tab:hover { color: #f0ebe2; }
    .venue-os-auth-tab.active {
      color: #8899cc;
      border-bottom-color: #8899cc;
    }
    .venue-os-auth-form label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(240,235,226,.7);
      margin-bottom: 6px;
    }
    .venue-os-auth-field-wrap { margin-bottom: 16px; }
    .venue-os-auth-form input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      font-size: 1rem;
      background: #1a1a1a;
      color: #f0ebe2;
      transition: border-color 0.2s;
    }
    .venue-os-auth-form input::placeholder { color: rgba(240,235,226,.35); }
    .venue-os-auth-form input:focus {
      outline: none;
      border-color: #8899cc;
      box-shadow: 0 0 0 2px rgba(136,153,204,.2);
    }
    .venue-os-auth-error {
      font-size: 0.85rem;
      color: #b0413e;
      margin: 0 0 12px;
      min-height: 1.2em;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .venue-os-auth-submit {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: #2a3a5e;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
    .venue-os-auth-submit:hover { background: #1e2d4a; }
    .venue-os-auth-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .venue-os-analytics-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,.15);
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: background 0.2s;
    }
    .venue-os-analytics-link:hover { background: rgba(255,255,255,.25); }
    @media (max-width: 768px) {
      .venue-os-analytics-link { display: none !important; }
    }
    .venue-os-logout-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      min-height: 36px;
      padding: 0 8px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.4);
      background: transparent;
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .venue-os-logout-btn:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.6);
    }
    .venue-os-logout-btn .logout-text { display: none; }
    .venue-os-logout-btn .logout-emoji { display: inline; }
    @media (min-width: 769px) {
      .venue-os-logout-btn .logout-text { display: inline; }
      .venue-os-logout-btn .logout-emoji { display: none; }
      .venue-os-logout-btn { padding: 0 12px; font-size: 0.9rem; font-family: inherit; font-weight: 500; }
    }
    .venue-os-auth-howto-toggle { margin: 16px 0 0; text-align: center; }
    .venue-os-auth-howto-btn {
      background: none;
      border: none;
      color: rgba(212,184,114,.8);
      font-size: 0.9rem;
      text-decoration: underline;
      cursor: pointer;
      padding: 0;
    }
    .venue-os-auth-howto-btn:hover { color: #d4b872; }
    .venue-os-auth-howto {
      display: none;
      margin-top: 16px;
      padding: 16px;
      background: #1a1a1a;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.08);
      font-size: 0.9rem;
      color: rgba(240,235,226,.75);
      text-align: left;
    }
    .venue-os-auth-howto p { margin: 0 0 12px; }
    .venue-os-auth-howto p:last-child { margin-bottom: 0; }
    .venue-os-auth-howto a { color: #d4b872; font-weight: 500; }
