.bannerform {
  background: #fff;
  color: #fff;
  font-family: manrope;
  padding: 100px 50px 0;
  margin-inline: auto;
  max-width: 1822px;
}
@media (width < 768px) {
  .bannerform {
    padding: 32px 16px 0;
  }
}

.bannerform__banner {
  background: center/cover no-repeat url("./img/back.png");
  padding: 80px 160px;
  border-radius: 64px;
}
@media (width < 1300px) {
  .bannerform__banner {
    padding: 70px;
  }
}
@media (width < 768px) {
  .bannerform__banner {
    padding: 40px 16px 24px;
    border-radius: 24px;
  }
}

.bannerform__wrapper {
  max-width: 780px;
}

.bannerform__title {
  font-size: 77px;
  font-family: oswald;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.05em;

  & i {
    color: #e84e26;
  }
}
@media (width < 1050px) {
  .bannerform__title {
    font-size: 40px;
  }
}
@media (width < 768px) {
  .bannerform__title {
    font-size: 30px;
  }
}

.bannerform__text {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  max-width: 570px;
}
@media (width < 768px) {
  .bannerform__text {
    font-size: 22px;
  }
}

.bannerform__form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (width < 500px) {
  .bannerform__form {
    display: flex;
    flex-direction: column;
  }
}

.bannerform__input {
  background-color: #fff;
  border-radius: 16px;
  font-size: 24px;
  color: #21201f;
  padding: 12px 24px;
}
@media (width < 768px) {
  .bannerform__input {
    font-size: 16px;
    border-radius: 8px;
  }
}

.bannerform__button {
  border-radius: 16px;
  font-size: 24px;
  padding: 16px 24px;
  text-align: center;
  grid-column: 1/3;

  background: radial-gradient(65.49% 100% at 51.66% 0%, #ff8262 0%, #e84e26 52.4%, #e87726 100%);

  transition: opacity 0.4s;
  &:hover {
    opacity: 0.6;
  }
}
@media (width < 768px) {
  .bannerform__button {
    font-size: 16px;
    padding: 16px;
  }
}

.bannerform__mikcheckbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 0;
  position: relative;
  grid-column: 1/3;

  /*  */
  --mikwidth: 26px;
}
@media (width < 768px) {
  .bannerform__mikcheckbox {
    margin: 0;
  }
}

.bannerform__mikcheckbox-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.bannerform__mikcheckbox-input:checked ~ .bannerform__mikcheckbox-indicator {
  opacity: 1;
}

.bannerform__mikcheckbox-input:checked ~ .bannerform__mikcheckbox-indicator::after {
  opacity: 1;
}

.bannerform__mikcheckbox-indicator {
  border: calc(var(--mikwidth) / 20 * 2) solid #000;
  box-sizing: border-box;
  display: inline-block;
  opacity: 0.6;
  position: relative;
  transition: all 0.3s;
  width: var(--mikwidth);
  height: var(--mikwidth);
  border-color: currentColor;
  flex-shrink: 0;
  border-radius: 8px;
}

.bannerform__mikcheckbox-indicator::after {
  border: solid #000;
  border-width: 0 calc(var(--mikwidth) / 20 * 2) calc(var(--mikwidth) / 20 * 2) 0;
  border-color: currentColor;
  content: "";
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  transform: rotate(45deg);
  left: calc(var(--mikwidth) / 20 * 6);
  top: calc(var(--mikwidth) / 20 * 2);
  height: calc(var(--mikwidth) / 20 * 8);
  width: calc(var(--mikwidth) / 20 * 3);
}

.bannerform__mikcheckbox-text {
  line-height: 1;
  font-size: 16px;
  color: inherit;
}
@media (width < 768px) {
  .bannerform__mikcheckbox-text {
    font-size: 12px;
  }
}
