/* Poppins Font */
body {
  font-family: 'Poppins', sans-serif;
}

/* Loader animation */
.loader-circle {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* 🔥 Animated Gradient Background (soft premium colors) */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-bg {
  background: linear-gradient(
    270deg,
    #e0f2fe,  /* light blue */
    #dbeafe,  /* soft blue */
    #ecfeff,  /* cyan tint */
    #f0fdf4,  /* light green */
    #e0f2fe   /* loop smooth */
  );
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}