* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: #475569;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

button {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
}

img {
  width: 100%;
  height: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

header {
  padding: 1em 0;
  width: 100%;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.btn {
  border-radius: 8px;
  background: #0b2944;
  padding: 0 1.5em;
  height: 56px;
  display: grid;
  place-content: center;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

main {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 90vh; */
  overflow: hidden;
}

h1 {
  font-size: 24px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  color: #292b2c;
  margin: 0;
}

p {
  text-align: justify;
  line-height: 27px;
  font-size: 18px;
  font-weight: 400;
  color: #666565;
}

.logo {
  width: 119px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 4em 0 0 0;
  padding: 0em 1em;
}

.formSuccess {
  display: none;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: end;
  gap: 1em;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 780px;
  min-height: 42px;
  border: solid 1px #e4e4e7;
  border-radius: 6px;
  margin: 0 auto;
  padding: 1em 2em;
  background: #ffffff;
  box-shadow: 0px 9px 42.8px 0px #0d0d120f;
}

.formSuccess p {
  margin: 0;
  text-align: center;
}

.formSuccess .checkIcon {
  display: none;
}

.hero article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: auto;
  text-align: center;
  gap: 20px;
}

/* .hero figure {
  width: 1000px;
  margin: auto;
  text-align: center;

  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
} */

.hero article p {
  text-align: center;
  margin: 0;
}

.formWrapper {
  background: #f8f6f3;
  width: 100%;
  padding: 4em 1em;
}

.formWrapper .joinwaitlist {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  width: 90%;
  margin: auto;
}

.formWrapper .joinwaitlist .inputField {
  width: 100%;
}

.formWrapper article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2em;
}

.formWrapper article p {
  text-align: center;
}

.submitWrapper {
  width: 100%;
}

input::placeholder {
  color: #bec0c4;
}

input,
select {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 0 1em;
  margin: 1em 0;
  width: 100%;
  height: 48px !important;
}

label {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #1b1b1b;
}

.heroImg {
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
  width: 100%;
  padding: 4em 0;
  margin: 0 auto;
  background: #000000;
}

footer p {
  text-align: center;
  color: #b9b8b8;
  font-weight: 400;
}

.about {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-top: 100px;
  gap: 1.5em;
  margin-bottom: 100px;
}

.about p {
  color: #666565;
  font-size: 14px;
}

.agree {
  display: flex;
  align-items: center;
  gap: 20px;

  width: 100%;
}

.agree input {
  width: 1.5em;
  height: 1.5em;
}

@media screen and (min-width: 900px) {
  .listItem p {
    font-size: 20px !important;
  }

  #showIt {
    display: flex;
  }

  h1 {
    font-size: 60px;
  }

  h3 {
    font-size: 48px;
  }

  p {
    font-size: 1.1rem;
  }

  .heroImg {
    width: 80%;
    margin: 0 auto;
    /* height: 600px; */
    /*  max-height: 900px; */
    height: 100%;
  }

  .banner p {
    font-size: 1.4rem;
    color: #fff;
  }

  .formWrapper .joinwaitlist {
    width: 40%;
  }

  .formWrapper .joinwaitlist .inputField {
    flex: 1;
  }

  .logo {
    width: 196px;
  }

  .market {
    font-size: 24px;
  }

  .about {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .formSuccess {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .formSuccess .checkIcon {
    display: block;
  }
}
