* {
  font-family: Space Mono;
  color: #fff;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  padding: 80px 160px 20px;
  background: url(./assets/bg_1.png) no-repeat center center, url(./assets/bg_2.png) no-repeat center center;
  background-size: cover, cover;
  background-color: #191919;
  min-height: 100dvh;
}
p,
a {
  text-align: center;
}
header {
  height: 41px;
}
.logo {
  width: 185px;
  height: 41px;
}
.wrapper {
  width: 783px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 193px);
  padding: 40px 0;
}
.waitlist {
  width: 109px;
  margin-bottom: 25px;
}
h1 {
  font-size: 60px;
  line-height: 64px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 15px;
  font-family: Archivo;
}
.description {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.6;
  width: 650px;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.form {
  max-width: 783px;
  display: flex;
  width: 100%;
  gap: 10.5px;
}
.email_input {
  width: calc(100% - 128px);
  height: 64px;
  border: 2px solid #fff;
  font-size: 18px;
  padding: 0 25px;
  background-color: transparent;
  outline: none;
}
.email_input::placeholder {
  opacity: 0.5;
}
.error_text {
  color: red;
}
.submit_btn {
  min-width: 216px;
  height: 64px;
  color: #060606;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  font-family: Archivo;
  outline: none;
  border: none;
  background-color: #fff;
  transition: 0.15s linear background-color;
  cursor: pointer;
  padding: 0 16px 0 16px;
}
.submit_btn:disabled {
  background-color: gray;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 52px;
  justify-content: flex-end;
}
.copyright {
  font-size: 14px;
  margin: 0 0 10px;
}
.privacy {
  font-size: 14px;
}
#success_content,
#error_content {
  display: none;
}

@media (max-width: 1200px) {
  body {
    padding: 60px 60px 20px;
  }
  .wrapper {
    min-height: calc(100vh - 173px);
  }
}
@media (max-width: 1024px) {
  body {
    padding: 30px 30px 20px;
  }
  .logo {
    width: 130px;
    height: 29px;
  }
  header {
    height: 29px;
  }
  footer {
    height: 72px;
  }
  .wrapper {
    min-height: calc(100vh - 152px);
  }
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .wrapper,
  .description {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .email_input {
    height: 50px;
    width: 100%;
    font-size: 14px;
  }
  .submit_btn {
    font-size: 14px;
    height: 50px;
  }
}
