@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease;
}

.glow {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 229, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
  }

  100% {
    box-shadow: 0 0 0 rgba(0, 229, 255, 0.4);
  }
}
