.step3 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.desc {
  color: #000;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* width: calc(100vw - (100svh - 402px) * var(--list-scale)); */
  width: calc(100vw - 35vw * var(--list-scale));
  height: 100svh;
  position: absolute;
  right: 0;
  padding: var(--offset);
}

.desc__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--offset) var(--offset) 0;
}

.desc__title {
  font-size: calc(100px * var(--scale));
  font-weight: 600;
  line-height: 1.22;
  text-align: left;
  width: 100%;
  margin-bottom: 12svh;
}

.desc__blocks {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--offset);
}

.desc__blocks-left {
  width: 100%;
  max-width: calc(600px * var(--scale));
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: calc(var(--offset) * 2);
}

.desc__blocks-right {
  padding-right: var(--offset);
  width: 100%;
}

.desc__blocks-title {
  font-size: calc(40px * var(--scale));
  font-weight: 500;
  margin-bottom: calc(var(--offset) / 2);
}

.desc__blocks-subtitle {
  font-size: calc(18px * var(--scale));
  font-weight: 500;
  margin: calc(20px * var(--scale)) 0 calc(var(--offset) / 2);
}

.desc__blocks-text {
  font-size: calc(15px * var(--scale));
  line-height: 1.53;
  opacity: 0.9;
}

.desc__fields {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(24px * var(--scale));
  width: 100%;
  margin-bottom: calc(32px * var(--scale));
}

.desc__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  position: relative;
}

.desc__field-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.desc__field-label {
  text-transform: uppercase;
  font-size: calc(12px * var(--scale));
  line-height: calc(15px * var(--scale));
  font-weight: 500;
  letter-spacing: calc(1.5px * var(--scale));
  margin: calc(9px * var(--scale)) 0 calc(5px * var(--scale));
}

.desc__field-input,
.desc__field-textarea {
  width: 100%;
  font-size: calc(15px * var(--scale));
  line-height: calc(23px * var(--scale));
  font-family: inherit;
  outline: none;
  border: none;
  border-radius: 0;
  margin-bottom: calc(5px * var(--scale));
  pointer-events: none;
}

.desc__field-textarea {
  resize: none;
  max-height: calc(100px * var(--scale));
}

.desc__field-line {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 300ms ease;
  width: 100%;
  height: calc(1px * var(--scale));
}

.desc__field:has(input:focus) .desc__field-line,
.desc__field:has(textarea:focus) .desc__field-line,
.desc__field:has(input:not(:placeholder-shown)) .desc__field-line,
.desc__field:has(textarea:not(:placeholder-shown)) .desc__field-line {
  background-color: #000;
}

.desc__field:has(.desc__field-error:not(:empty)) .desc__field-line {
  background-color: #dc1a38;
}

.desc__field-error {
  font-size: calc(12px * var(--scale));
  line-height: calc(15px * var(--scale));
  font-weight: 500;
  margin: calc(5px * var(--scale)) 0 calc(-20px * var(--scale));
  color: #dc1a38;
}

.desc__field-error:empty {
  display: none;
}

.desc__submit {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: calc(var(--offset) / 4);
  background: none;
  outline: none;
  font-family: inherit;
  font-weight: 500;
  font-size: calc(18px * var(--scale));
  line-height: 1;
  text-transform: uppercase;
}

.desc__submit svg {
  width: calc(24px * var(--scale));
  height: calc(24px * var(--scale));
}

.desc__submit span {
  transform: translateY(calc(1px * var(--scale)));
}

.desc-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--offset);
  min-height: calc(22px * var(--scale));
}

.desc-footer__link {
  opacity: 0.6;
  cursor: pointer;
  transition: all 350ms ease;
  white-space: nowrap;
  font-size: calc(15px * var(--scale));
  line-height: 22px;
}

.desc-footer__title {
  font-size: calc(18px * var(--scale));
  line-height: 1;
  font-weight: 500;
}

.desc__footer-block__link:hover {
  opacity: 1;
}

.desc__footer-block__title {
  font-weight: 500;
}

body:has(.preloader-wrapper.hide) .desc__submit:not(.disabled),
body:has(.preloader-wrapper.hide) .desc__field-input:not(.disabled),
body:has(.preloader-wrapper.hide) .desc__field-textarea:not(.disabled),
body:has(.preloader-wrapper.hide) .desc-footer__link {
  pointer-events: all;
}

.desc__submit.disabled {
  color: #000;
}

.desc__field-input.disabled,
.desc__field-textarea.disabled,
.desc__field-input:disabled,
.desc__field-textarea:disabled {
  background-color: transparent;
}

.desc__submit.disabled,
.desc__field-wrapper:has(.desc__field-input.disabled),
.desc__field-wrapper:has(.desc__field-textarea.disabled) {
  opacity: 0.5 !important;
}
