/* ── Развилка формы заявки: разбор сценария / регистрация партнёром ── */

.apply-switch {
  display: flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: 24px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #F7FAFC;
}

.apply-switch__tab {
  position: relative;
  flex: 1 1 0;
  min-height: 58px;
  padding: 10px 18px 10px 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #4A5568;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}

.apply-switch__tab::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #CBD5E0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.apply-switch__tab::after {
  content: "вариант";
  display: block;
  margin-top: 3px;
  color: #718096;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.apply-switch__tab--active {
  background: #fff;
  color: #1A202C;
  box-shadow: 0 8px 20px rgba(26, 32, 44, .08);
}

.apply-switch__tab--active::before {
  border-color: #E63756;
  background: radial-gradient(circle, #E63756 0 42%, transparent 46%);
}

.apply-switch__tab--active::after {
  content: "выбрано";
  color: #E63756;
  font-weight: 600;
}

.apply-register {
  text-align: center;
  padding: 26px 22px;
}

.apply-register__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 10px;
}

.apply-register__text {
  font-size: 15.5px;
  color: #4A5568;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 20px;
}

.apply-register__note {
  margin-top: 16px;
  font-size: 13.5px;
  color: #718096;
  font-style: italic;
}

/* ── Мини-форма регистрации партнёра ── */

.reg-form__fields {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 14px;
}

.reg-form__consent {
  justify-content: center;
  margin-bottom: 16px;
}

.reg-form__btn {
  min-width: 260px;
}

.reg-form__success {
  padding: 24px;
  background: #F7FAFC;
  border-radius: 14px;
  max-width: 480px;
  margin: 0 auto;
  color: #1A202C;
}

@media (max-width: 700px) {
  .apply-switch {
    flex-direction: column;
    gap: 3px;
    padding: 4px;
    border-radius: 14px;
  }

  .apply-switch__tab {
    min-height: 54px;
    padding: 10px 14px 10px 40px;
    font-size: 14px;
  }

  .apply-switch__tab::before {
    left: 14px;
  }
}
