@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes success-image-move {
  0% {
    bottom: -320px;
  }
  50% {
    bottom: 50px;
  }
  100% {
    bottom: -320px;
  }
}

input,
textarea {
  outline: none;
}
