.main {
  background-image: url(../images/main/fon.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 69px 0 63px;
  margin-bottom: 68px;
  margin-top: 97px;
}

.main-wrapper {
  display: flex;
  justify-content: center;
}

.main__title-brand {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #EF7F04;
}

.main__title-advantages {
  margin-bottom: 36px;
  font-weight: 100;
  font-size: 36px;
  line-height: 42px;
  color: #FFFFFF;
}

.main-title-page {
  padding-top: 67px;
  padding-right: 32px;
  padding-left: 23px;
  cursor: default;
}

.main__advantages {
  display: flex;
  gap: 0 40px;
}

.main__advantages-item {
  width: 176px;
}

.item__img {
  margin-bottom: 20px;
}

.item__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.main-interaction-page {
  width: 406px;
  background-color: #FFFFFF;
  border-radius: 10px;
}

.form {
  padding: 43px 43px 80px 40px;
  position: relative;

}

.form-title {
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  line-height: 21px;
  color: #2F2F51;
  margin-bottom: 27px;
  cursor: default;
}

.form__input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 16px;
  background: #E2E2E2;
  border: none;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #424268;
}

.form__input:focus {
  box-shadow: 0 0 0 1px #EF7F04, 0 0 10px 
  #2F2F51;
}

.form__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #424268;
}

.form-label {
  display: flex;
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  cursor: pointer;
}

.form__check {
  /* display: none; */
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.form__check:focus + .form__check-fake {
  box-shadow: 0 0 0 1px #EF7F04, 0 0 10px 
  #2F2F51;
}

.form__check-fake {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  background: #E2E2E2;
  border-radius: 3px;
  margin-right: 10px;
}

.form__check-fake::before {
  content: '';

  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../images/main/Vector1.svg);
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  margin-top: -3px;
  margin-left: 3px;

  transition: 0.2s ease-in;
}

.form__check:checked + .form__check-fake::before {
  transform: translate(-50%, -50%) scale(1);
}

.form__check-link {
  text-decoration: none;
  color: #4b67af;
  border: none;
  outline: none;
}

.form__check-link:focus {
  box-shadow: 0 0 0 1px #EF7F04, 0 0 10px 
  #2F2F51;
  outline: none;
}

.form__submit {
  display: block;
  margin: 0 auto;
  padding: 19px 40px;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}

.form__submit:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.form__submit:focus {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.form__img {
  position: absolute;
  bottom: -56px;
  right: -133px;
}

@media (max-width: 992px) {
  .main {
    padding-bottom: 131px;
  }

  .main-wrapper {
    justify-content: start;
  }

  .main-interaction-page {
    display: none;
  }
}
