/* Media Sizes */
/* Phone */
/* Font Weights */
*::selection {
  background-color: #9F54B1;
}

* {
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  -webkit-text-size-adjust: none !important;
}

html {
  font-family: "Manrope", sans-serif;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: white;
  margin: 0;
  padding: 0;
}

.main {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  min-height: 935px;
  position: relative;
  padding-bottom: 60px;
}
.main .main__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../assets/img/bg.jpg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.main .main__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .main {
    height: auto;
    width: 100%;
    padding-bottom: 60px;
  }
}

/* Media Sizes */
/* Phone */
/* Font Weights */
.header {
  width: 100%;
}
.header .header__wrapper {
  height: 64px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(14, 9, 19, 0.6);
}
.header .header__wrapper::after {
  content: "";
  display: block;
  height: 1px;
  width: 1278px;
  max-width: 1278px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
}

.title {
  margin: 100px 0 0 0;
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 63px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.title span {
  margin-top: 35px;
  display: block;
  font-size: 31px;
}
@media (max-width: 768px) {
  .title {
    width: 100%;
    padding: 0 15px;
  }
}

.form {
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  max-width: 523px;
  width: 100%;
}
.form .form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .form .form__row {
    flex-direction: column;
    width: 100%;
  }
}
.form .form__group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 89px;
  padding: 0 24px;
  font-size: 18px;
  color: #606060;
  gap: 8px;
  white-space: nowrap;
  border-radius: 300px;
  background-color: white;
}
.form .form__group.form__group--textarea {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-block: 32px;
  border-radius: 44px;
  height: 174px;
}
.form .form__group.form__group--textarea textarea {
  resize: none;
  height: 100%;
}
.form .form__group.form__group--checkbox {
  border-radius: 0;
  background-color: transparent;
  position: relative;
  color: white;
  height: auto;
}
.form .form__group.form__group--checkbox .form__group-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  white-space: normal;
}
.form .form__group.form__group--checkbox .form__group-control {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}
.form .form__group.form__group--checkbox .form__group-control--custom-checkbox {
  display: flex;
  flex-shrink: 0;
  width: 31px;
  border: 2px solid rgba(132, 122, 225, 0.65);
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 7px;
  position: relative;
}
.form .form__group.form__group--checkbox .form__group-control--custom-checkbox:after {
  content: "";
  display: flex;
  width: 17px;
  aspect-ratio: 1/1;
  border-radius: 3px;
  background-color: rgba(135, 48, 215, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  opacity: 0;
}
.form .form__group.form__group--checkbox .form__group-control:checked + .form__group-control--custom-checkbox:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
@media (max-width: 768px) {
  .form .form__group {
    padding: 0 20px;
    height: 65px;
    border-radius: 20px;
  }
  .form .form__group.form__group--textarea {
    padding-block: 20px;
    border-radius: 20px;
  }
}
.form .form__group-label sub {
  color: #C7C7C7;
}
.form .form__group-control {
  width: 100%;
  color: black;
  outline: none;
  border: none;
  border-bottom: 1px solid #FCEDF1;
}
.form .form__group--checkbox {
  margin-top: 25px;
}
.form input,
.form textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.form input:active,
.form textarea:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.form input textarea:focus,
.form input input:focus,
.form textarea textarea:focus,
.form textarea input:focus {
  outline: none;
}
.form input *:focus,
.form textarea *:focus {
  outline: none;
  box-shadow: none;
}
.form .form__btn {
  margin-top: 27.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 24px;
  border: 1px solid white;
  background-color: transparent;
  height: 83px;
  padding: 25px 80px;
  width: 100%;
}
.form .form__btn:hover {
  cursor: pointer;
}
.form .form__btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form .form__btn.form__btn--submit {
  color: #8730D7;
  background-color: white;
  font-weight: bold;
}
@media (max-width: 768px) {
  .form .form__btn {
    height: 34px;
  }
}
@media (max-width: 768px) {
  .form {
    padding: 0 15px;
  }
}

.hidden-answer {
  height: calc(100vh - 64px);
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.hidden-answer p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 63px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  transform: translateY(-100px);
}
@media (max-width: 768px) {
  .hidden-answer p {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
