@keyframes pulse-input {
  0%, 100% {
    opacity: 1;
    scale: 1.05;
  }
  50% {
    opacity: 0.95;
    scale: 1.00;
  }
}



.animate-pulse-input {
  animation: pulse-input 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}