/* ── LOGIN PAGE ── */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:  #0d1321;
  padding: 2rem;
}

.login-wrapper {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ── LOGO ── */
.login-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: -0.5px;
}

.login-logo span { color: var(--blue); }

/* ── CARD ── */
.login-card {
  background-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  backdrop-filter:blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2.5rem 2rem;
  width: 100%;
  box-shadow: 0 8px 32px rgba(59,130,246,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.login-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.login-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.login-card p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

/* ── FORM ── */
.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.login-form input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  background-color: var(--blue-light);
}

.login-form input:focus {
  border-color: var(--blue);
}

.login-note {
  font-size: 0.78rem !important;
  color: #9ca3af !important;
  margin-top: 0.5rem;
}

/* ── SAVED USERS ── */
.saved-users {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.saved-users-title {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.saved-users-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.saved-user-btn {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saved-user-btn:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
/* ── ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.33;
  animation: floatOrb linear infinite;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: -100px;
  left: -100px;
  animation-duration: 2s;
}


.orb-2 {
  width: 350px;
  height: 350px;
  background: #818cf8;
  bottom: -80px;
  right: -80px;
  animation-duration: 3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: #38bdf8;
  top: 50%;
  left: 50%;
  animation-duration: 2s;
}
.orb-4 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: 20%;
  left: 50%;
  animation-duration: 3s;
}
.orb-5 {
  width: 250px;
  height: 250px;
  background:#4a00e0;
  top: -40px;
  left: -40px;
  animation-duration: 2s;
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -40px) scale(1.1); }
  66%  { transform: translate(-30px, 30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Make sure login card stays above orbs */
.login-wrapper { position: relative; z-index: 1; }
/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.2rem;
  }

  .login-logo {
    font-size: 1.5rem;
  }

  .login-card h1 {
    font-size: 1.2rem;
  }

  .login-icon {
    font-size: 2.5rem;
  }
}