/* ── Auth views (login / signup) ── */
.auth-view {
  justify-content: center;
  padding: 0 24px;
  gap: 0;
}
.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
}
.auth-logo p {
  font-size: 14px;
  color: #666;
  letter-spacing: 2px;
  margin-top: 8px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-form label {
  font-size: 10px;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.auth-form input {
  width: 100%;
  height: 48px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 0 16px;
  outline: none;
}
.auth-form input:focus { border-color: #666; }
.auth-form input::placeholder { color: #555; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.auth-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #333;
}
.auth-divider span {
  font-size: 10px;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
}

.btn-social {
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-social:hover { border-color: #555; }
.btn-social + .btn-social { margin-top: 12px; }
.btn-social .icon { font-weight: 700; font-size: 16px; }
.btn-social svg { width: 18px; height: 18px; fill: #eee; }

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #666;
}
.auth-footer a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
}
.auth-footer a:hover { text-decoration: underline; }

.auth-error {
  background: #331111;
  border: 1px solid #662222;
  border-radius: 8px;
  color: #ff6666;
  font-size: 12px;
  padding: 10px 16px;
  display: none;
}
.auth-error.show { display: block; }
