.search-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #007991, #78ffd6);
  border-radius: 9999px;
  z-index: -1;
  animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 5px #51a2ff, 0 0 20px #51a2ff;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px #51a2ff, 0 0 30px #51a2ff;
  } 
}

.neon-border {
  position: relative;
}

.neon-border::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 10px #51a2ff;
  opacity: 0.7;
}