:root {
  --banner-height: 48px;
  --step-animation-ms: 680ms;
}

body.body {
  margin: 0;
  overflow: hidden;
}

.steps-shell {
  width: 100%;
  height: 100dvh;
  padding-top: var(--banner-height);
  overflow: hidden;
}

.steps-track {
  display: flex;
  width: 300vw;
  height: calc(100dvh - var(--banner-height));
  transform: translate3d(0, 0, 0);
  transition-property: transform;
  transition-duration: var(--step-animation-ms);
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.steps-track.is-backward {
  transition-timing-function: cubic-bezier(.34, 1, .64, 1);
}

.registration-step {
  flex: 0 0 100vw;
  width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--banner-height));
  height: calc(100dvh - var(--banner-height));
  overflow-y: auto;
  overflow-x: hidden;
  opacity: .45;
  transition: opacity .35s ease;
}

.registration-step.is-active {
  opacity: 1;
}

.registration-step.registration-container {
  justify-content: center;
  width: 100vw;
  height: calc(100dvh - var(--banner-height));
  min-height: calc(100dvh - var(--banner-height));
  margin: 0;
}

#step-2.registration-step {
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}

#step-2 .container-3 {
  margin-bottom: 0;
}

#step-2 .container-5 {
  margin-top: 12px;
}

.container-buttons-registry button,
.container-buttons-actions button,
.container-rigth button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.registry-form {
  width: 100%;
  max-width: 760px;
  margin-top: 28px;
}

.registry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  width: 100%;
}

.registry-field {
  text-align: left;
}

.registry-field.registry-field-full {
  grid-column: 1 / -1;
}

.registry-label {
  color: #1b1c1d;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: .08em;
  display: block;
}

.required-mark {
  color: #da121a;
  margin-left: 2px;
  font-weight: 700;
}

.registry-input {
  color: #1b1c1d;
  border: 2px solid transparent;
  border-radius: 10px;
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 0 14px;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 45px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.registry-input::placeholder {
  color: rgba(27, 28, 29, .65);
  font-weight: 500;
}

.registry-input:focus {
  outline: 0;
  border-color: #07893a;
  box-shadow: 0 0 0 3px rgba(7, 137, 58, .2);
}

.registry-input.input-error {
  border-color: #da121a;
  background-color: #ffe4e5;
}

.input-error-message {
  color: #da121a;
  min-height: 18px;
  margin-top: 5px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 150%;
}

.form-feedback {
  width: 100%;
  margin: 6px 0 14px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
  display: none;
}

.form-feedback.show {
  display: block;
}

.form-feedback.success {
  color: #125f3f;
  background-color: #dbf5e7;
  border-color: #86cda6;
}

.form-feedback.error {
  color: #8f1f22;
  background-color: #fce5e6;
  border-color: #eca8aa;
}

.container-buttons-actions.form-actions {
  margin-top: 0;
}

.submit-button {
  align-items: center;
  justify-content: center;
  min-width: 158px;
  display: inline-flex;
  gap: 10px;
}

.submit-button:disabled,
.button-fourth:disabled {
  cursor: not-allowed;
  opacity: .75;
}

.btn-spinner {
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin .8s linear infinite;
  display: none;
}

.submit-button.is-loading .btn-spinner {
  display: inline-block;
}

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

@media screen and (max-width: 767px) {
  .registry-grid {
    grid-template-columns: 1fr;
  }

  .registry-field.registry-field-full {
    grid-column: auto;
  }

  .container-buttons-actions.form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 14px;
  }

  .form-actions .button-fourth,
  .form-actions .submit-button {
    width: 100%;
    margin-right: 0;
  }

  #step-2.registration-step {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .steps-shell {
    height: 100svh;
  }

  .steps-track {
    height: calc(100svh - var(--banner-height));
  }

  .registration-step,
  .registration-step.registration-container {
    min-height: calc(100svh - var(--banner-height));
    height: calc(100svh - var(--banner-height));
  }

  .div-block-4 {
    margin-bottom: 40px;
  }

  .container-buttons-registry {
    width: 100%;
  }

  .container-buttons-registry .w-button {
    text-align: center;
    width: 100%;
  }
}