/* ==========================================================================
   Fanclub Trinkpause – Login-Gate Styling
   Eigenständige, kleine Stylesheet-Datei für den Login-Bildschirm, damit
   sie unabhängig vom bestehenden style.css funktioniert.
   ========================================================================== */

.auth-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f4f4f5;
  font-family: inherit;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  background: #ffffff;
  border-radius: 50%;
  padding: 1px;
  box-sizing: border-box;
}

.auth-card h1 {
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: #1a1a1a;
}

.auth-sub,
.auth-notice {
  font-size: 0.88rem;
  color: #666;
  margin: 0 0 22px;
}

.auth-notice {
  background: #fff4e5;
  color: #8a5300;
  border: 1px solid #ffdca6;
  border-radius: 8px;
  padding: 10px 12px;
}

.auth-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.auth-form input {
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid #d8d8dc;
  border-radius: 8px;
  font-family: inherit;
}

.auth-form input:focus {
  outline: none;
  border-color: #b30000;
  box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.12);
}

.auth-error {
  background: #fdeaea;
  color: #b30000;
  border: 1px solid #f5c2c2;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.82rem;
}

#shopContent[hidden],
.auth-gate[hidden] {
  display: none !important;
}
