.traqqr-preform {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #5d6675;
  font: 14px/1.35 Inter, sans-serif;
}
.traqqr-preform-title {
  margin: 0 0 10px;
  color: #263142;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.traqqr-preform p {
  margin: 0 0 16px;
}
.traqqr-preform strong {
  font-weight: 700;
}
.traqqr-preform-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.traqqr-preform-field--full {
  grid-column: 1 / -1;
}
.traqqr-preform-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.traqqr-preform input {
  box-sizing: border-box;
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #f8f9fb;
  color: #263142;
  font: inherit;
}
.traqqr-preform input:focus {
  outline: 2px solid #2563eb;
}
.traqqr-preform-privacy {
  margin: 16px 0 0 !important;
  font-size: 12px;
  line-height: 1.4;
}
.traqqr-preform-privacy a {
  color: inherit;
  text-decoration: underline;
}
.traqqr-preform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 13px 18px;
  border-radius: 8px;
  background: linear-gradient(94deg, rgb(3, 25, 83) -43.1%, rgb(2, 54, 194) 99.55%);
  color: #fff;
  font-weight: 600;
}
.traqqr-preform-button-icon {
  width: 14px;
  height: 14px;
}

.traqqr-loading {
  position: relative;
  padding-left: 2.5em !important;
}
.traqqr-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75em;
  width: 1em;
  height: 1em;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: traqqr-spin 0.7s linear infinite;
}

@keyframes traqqr-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@media (max-width: 560px) {
  .traqqr-preform-fields {
    grid-template-columns: 1fr;
  }

  .traqqr-preform-field--full {
    grid-column: auto;
  }
}
