/* =========================================================
   auth.css
   Archivo para Login y Register:
   - mensajes de bienvenida
   - link de recuperar contraseña
   - interacción especial del botón login
   ========================================================= */

/* =========================
   AUTH MESSAGES
========================= */

.welcome {
  color: #22c55e;
  font-weight: bold;

  margin-bottom: 10px;

  opacity: 0;
  transition: 0.5s;
}

.welcome.show {
  opacity: 1;
}

/* =========================
   LOGIN BUTTON INTERACTION
========================= */

#loginBtn {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 5px 0 #15803d;
}

#loginBtn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #15803d;
}

#loginBtn.loading {
  animation: pulseBtn 0.8s infinite alternate;
}

/* =========================
   LOGIN LINKS
========================= */

.forgot-link {
  margin: 12px 0 4px;
  font-size: 0.9rem;
}

.forgot-link a {
  color: #facc15;
  font-weight: 600;
  text-decoration: none;
}

.forgot-link a:hover {
  text-decoration: underline;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulseBtn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.03);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .welcome {
    font-size: 0.95rem;
  }
}