.aiss-wrap input[type="url"],
.aiss-wrap input[type="email"] {
  padding: 10px 12px;
}

.aiss-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(99, 102, 241, 0.25);
  border-top-color: rgba(99, 102, 241, 1);
  border-radius: 999px;
  animation: aissSpin 0.9s linear infinite;
}

@keyframes aissSpin {
  to {
    transform: rotate(360deg);
  }
}

