/* ========================= */
/* 🧊 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: 100vw;
  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: rgba(255,255,255,0.95);
  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 */
/* ========================= */

.dashboard,
.list-container,
.settings-container {
  color: white;
}