:root {
  --site-max-width: 64rem;
}

.site-container {
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo-zapbot {
  font-family: "Bungee", cursive;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: transform 0.2s ease;
  border: 3px solid #111;
  border-radius: 10px;
  padding: 4px 10px;
}

.logo-zapbot:hover {
  color: #111;
  transform: scale(1.05);
}

.navbar {
  backdrop-filter: saturate(120%) blur(2px);
}

body.login-auth-page {
  background-color: #f3f4f6;
}

body.login-auth-page .navbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(229, 231, 235, 0.85);
}

/* Auth pages: register layout is the reference size; login & forgot match this box */
.auth-form-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  min-height: 35.5rem;
  display: flex;
  flex-direction: column;
}
