/* ========================= */
/* 🧊 LOGIN UI */
/* ========================= */

/* LOGO */

.logo {
  width: 50vw;
  max-width: 500px;
  min-width: 180px;
  display: block;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  z-index: 7;
}

/* GLASS FONDO GRANDE */

.logo-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: min(460px, 80vw);
  height: 50vh;
  min-width: 320px;
  min-height: 400px;
  max-height: 50vh;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: -1;
}

/* GLASS CÍRCULO LOGO */

.logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28vw;
  height: 28vw;
  max-width: 340px;
  max-height: 340px;
  min-width: 200px;
  min-height: 200px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  border-radius: 50%;
  z-index: -1;
}

/* CARD LOGIN */

.login-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 50vh;
  min-height: 400px;
  max-height: 50vh;
  background: #facc15;
  backdrop-filter: blur(8px);
  border-radius: 20px 60px 60px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: -1;
}

/* CONTENIDO LOGIN */

.card-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

/* ========================= */
/* 🎬 ANIMACIONES */
/* ========================= */

.card-content > * {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card-content > *:nth-child(1) { animation-delay: 0.2s; }
.card-content > *:nth-child(2) { animation-delay: 0.35s; }
.card-content > *:nth-child(3) { animation-delay: 0.5s; }
.card-content > *:nth-child(4) { animation-delay: 0.65s; }

/* ========================= */
/* 📦 CONTENEDORES APP */
/* ========================= */

.list-container,
.settings-container {
  padding: 30px;
  color: var(--text-primary);
}

.list-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.list-container p {
  opacity: 0.8;
}

.welcome {
  color: var(--text-primary);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #fbbf24);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  cursor: pointer;

  border: none;
  padding: 0;
}

@media (max-width: 768px) {
  .fab {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}
