.signup-btn {
  cursor: pointer;
}

.signup-btn_disabled {
  cursor: not-allowed;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.process-circle-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-circle-wrapper .process-circle {
  display: inline-block;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 2s linear infinite;
  -webkit-backface-visibility: hidden;
}