@keyframes stimmt-field-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
  }
}

.stimmt-field-focus {
  animation: stimmt-field-pulse 0.5s ease-in-out 3;
  outline: 2px solid rgb(59, 130, 246);
  outline-offset: 2px;
  border-radius: 4px;
}
