/* ==============================
   AUTH (LOGIN / REGISTER)
============================== */
.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: var(--color-surface, #111);
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  border: 1px solid rgba(255, 105, 180, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.auth-card h1 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text, #fff);
  letter-spacing: -0.01em;
}

.auth-card input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 105, 180, 0.2);
  color: var(--color-text, #fff);
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-card input:focus {
  outline: none;
  border-color: rgba(255, 105, 180, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.08);
}

.auth-card button {
  width: 100%;
  margin-top: 10px;
}

.auth-footer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--color-text-dim, #888);
}

.auth-footer a {
  color: var(--color-accent, #ff69b4);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  color: var(--color-accent-strong, #ff3399);
}



/* ==============================
   AUTH ANIMATION
============================== */
@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-card {
  animation: authFadeIn 0.6s ease-out;
}

.auth-card {
  animation: authFadeIn 0.4s ease-out;
}

.spotify-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1DB954;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(29,185,84,0.6);
  /* Space it away from both Settings + search bar */
  margin-left: 16px;
  margin-right: 14px;
}

.spotify-status.connected {
  color: #1DB954;
  box-shadow: 0 0 10px rgba(29,185,84,0.6);
  cursor: default;
}

.song-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.song-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
}
