.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #fff;
  background-color: #000;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 130%;
}

.body {
  background-color: #000;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #ffffff26;
  border: .5px solid #ffffff40;
  border-radius: 100px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 4px;
  display: flex;
}

.text-field {
  color: #fff9;
  background-color: #fff0;
  border: 1px #000;
  flex: 1;
  height: 48px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
}

.text-field:hover {
  opacity: .8;
}

.text-field:focus {
  color: #fff;
}

.text-field::placeholder {
  color: #fff6;
}

.error {
  color: #131316;
  text-align: center;
  border-radius: 12px;
}

.form-block {
  width: 400px;
}

.form-block.footer {
  width: 100%;
  max-width: 400px;
}

.text-block {
  color: #fff9;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  line-height: 130%;
}

.column-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading {
  text-align: center;
  font-weight: 900;
  line-height: 130%;
}

.primary-medium-button {
  color: #000;
  background-color: #fff;
  border-radius: 100px;
  height: 48px;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 17px;
  font-weight: 700;
}

.primary-medium-button:hover {
  background-color: #fffc;
}

.primary-medium-button:active {
  background-color: #fff6;
}

.secondary-small-button {
  background-color: #ffffff4d;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
}

.secondary-small-button.coming-soon {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: absolute;
  inset: -29% -68px auto auto;
  transform: rotate(10deg);
}

.secondary-small-button.coming-soon:hover {
  background-color: #fff3;
}

.secondary-small-button.coming-soon:active {
  background-color: #ffffff1a;
}

.download-image {
  border-radius: 4px;
  height: 52px;
  box-shadow: 0 0 0 1px #fff;
}

.success {
  color: #fff;
  background-color: #ffffff1a;
  border: .5px solid #ffffff40;
  border-radius: 100px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 400;
}

.download-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.main-container {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.navbar {
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  background-color: #000000bf;
  padding-top: 8px;
  padding-bottom: 8px;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
}

.coming-soon-div {
  position: absolute;
  inset: 0%;
}

.mailchimp-tag {
  display: none;
}

@media screen and (max-width: 767px) {
  .download-image {
    height: 38px;
  }
}

@media screen and (max-width: 479px) {
  .form-block {
    width: 100%;
  }

  .text-block, .heading {
    font-size: 22px;
  }

  .secondary-small-button.coming-soon {
    top: auto;
    bottom: -16px;
    right: auto;
  }

  .main-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-top: 64px;
  }

  .coming-soon-div {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}


