:root {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;

  color-scheme: light;
  color: var(--black);
  background-color: #fbfafa;

  --purple: #7a2bf4;
  --primary: #2c3aff;
  --black: #0b0b0b;
  --80: #333;
  --75: #535353;
  --stroke: #c1c1c1;
  --white: #fdfdfd;
  --background-color: #fbfafa;
  --light-pink: #f6eff8;
  --system-colors-green: #0b8447;
  --system-colors-red: #dd5f5f;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.lead-page__html,
.lead-page__body {
  margin: 0;
  padding: 0;
  min-height: 100vh;

  max-width: 100%;
  scroll-padding-top: 5rem;
  font-size: 14px;
  overflow-x: hidden;

  /* ВАЖНО: Разрешаем выделение там, где оно необходимо пользователю */
  input,
  textarea,
  [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
}

.lead-page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h5,
h4,
h3,
h2,
h1,
a,
p,
input,
ul,
ol {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
  list-style: none;
  color: inherit;
  border: none;
  line-height: 130%;
}

button {
  background: none;
  border: none;

  margin: 0;
  padding: 0;

  color: inherit;
  font: inherit;

  outline: none;
  box-shadow: none;

  cursor: pointer;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lead-page__main {
  width: 100%;
  max-width: 1600px;
}

svg {
  overflow: visible;
}

.lead-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

@media screen and (max-width: 735px) {
  .lead-container {
    padding: 0 16px;
  }
}

.lead-button-primary {
  display: flex;

  background-color: var(--primary);
  border-radius: 8px;
  padding: 8px 16px;

  font-weight: 900;
  color: #f9f2f2;
  text-align: center;
  align-items: center;
  justify-content: center;

  transition: transform 1s ease, box-shadow 0.3s ease;
  user-select: none;
}

.lead-button-primary:hover {
  background: linear-gradient(259deg, #f6358a 0%, #7a2bf4 70%, #1c25a3 100%);
}

.lead-button-primary:active {
  transform: translateY(1px);

  background: linear-gradient(259deg, #f6358a 0%, #7a2bf4 80%, #1c25a3 100%);
  opacity: 0.8;
}

.lead-button-primary:disabled {
  cursor: not-allowed;
  background: #7a65ff;
}

.lead-button-secondary {
  display: flex;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 8px 16px;

  font-weight: 500;
  font-size: 16px;
  color: #545fff;
  text-align: center;
  align-items: center;
  justify-content: center;

  transition: transform 1s ease, box-shadow 0.3s ease;
  user-select: none;
}

.lead-button-secondary:hover {
  background-color: var(--primary);

  font-weight: 900;
  color: #f9f2f2;
}

.lead-button-secondary:active {
  transform: translateY(1px);
  opacity: 0.8;
  background: var(--primary);
}

.lead-button-secondary:disabled {
  cursor: not-allowed;
  border: 1px solid #7a65ff;
  font-weight: 500;
  color: #7a65ff;
}

.lead-button-norm {
  width: 212px;
  height: 48px;
}
/* 
* {
  outline: 2px solid red;
} */
