* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}

h2 {
  color: #2d6dd3;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

p {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

form {
  color: black;
  font-family: "Inter", sans-serif;
  text-align: center;
}

a {
  color: #2d6dd3;
  text-decoration: none;
}

input[type="submit"] {
  background-color: #cd3065;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

input[type="text"],
input[type="email"] {
  width: 100%;
}

body {
  background: #070c29;
  background: -webkit-linear-gradient(
    175deg,
    rgba(7, 12, 41, 1) 39%,
    rgba(45, 109, 211, 1) 98%
  );
  background: -moz-linear-gradient(
    175deg,
    rgba(7, 12, 41, 1) 39%,
    rgba(45, 109, 211, 1) 98%
  );
  background: linear-gradient(
    175deg,
    rgba(7, 12, 41, 1) 39%,
    rgba(45, 109, 211, 1) 98%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#070C29", endColorstr="#2D6DD3", GradientType=0);
  width: 100vw;
  min-height: 100vh;
  display: flex;
  margin: 0px;
  color: white;
}

#brand-image {
  width: 200px;
  padding: 5% auto;
  margin-bottom: 25px;
}

#brand-image img {
  width: 100%;
}

#mc_embed_shell {
  width: 100%;
}

.mc-field-group {
  padding: 10px;
  margin-bottom: 5px;
  display: grid;
  border: none;
}

.mc-field-group label {
  font-weight: bold;
}

.mc-field-group input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: black;
}

#name-fields {
  display: flex;
  width: 100%;
  gap: 5px;
}

#gdpr_100004 {
  margin-right: 10px;
}

#name-fields .mc-field-group {
  flex-basis: 50%;
  display: block;
}

#waitlist-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: auto;
}

#mc_embed_signup {
  background-color: white;
  padding: 5% 10%;
  border-radius: 2%;
}

#mergeRow-gdpr {
  color: black !important;
}

#footer-section {
  margin-top: 20px;
  font-size: small;
}

#thankyou-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#thankyou-image {
  width: 80px;
  margin: 20px;
}

#thankyou-image img {
  width: 100%;
}

@media (min-width: 768px) {

#waitlist-wrapper {
    width: 90%;
  }

  #waitlist-content {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 5%;
    width: 100%;
  }

  #footer-section {
    text-align: right;
  }
}

@media (max-width: 767px) {

#waitlist-wrapper {
    width: 80%;
  }
  #waitlist-content {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 5%;
    width: 100%;
    margin-bottom: 5%;
  }

  #brand-info {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }

  #brand-image {
    margin: 20px auto;
  }

  #footer-section {
    margin-top: 30px;
    text-align: center;
  }
}
