@font-face {
  font-family: 'Montserrat';
  src: url('/asset/fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  font-family: "Outfit", sans-serif;
  background-image: url("../images/waitlist.png");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.header {
  display: flex;
  justify-content: left;
  padding: 20px;
}

.header a {
  font-family: "Outfit", sans-serif;
  text-decoration: none;
}

.header h1 {
  font-size: 20px;
  color: #333;
}

.main-content {
  text-align: center;
  margin: auto;
}

.main-content h2 {
  font-family: 'Montserrat';
  font-size: 60px;
  color: #273043;
  font-weight: 600;
}

.description {
  font-size: 22px;
  color: #9397A1;
  margin: 20px 0;
  font-weight: 200;
}

.email-section {
  display: inline-flex;
  margin: 20px 0;
  justify-content: center;
}

.email-input {
  padding: 15px 20px;
  border-radius: 30px 0 0 30px;
  border: none;
  width: 300px;
  font-size: 18px;
  outline: none;
  background-color: #E6F1F8;
  font-weight: normal;
}

input::placeholder {
  color: #9397A1;
}

.join-btn {
  padding: 15px 30px;
  border-radius: 0 30px 30px 0;
  border: none;
  background-color: #283144;
  color: #E6F1F8;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
}

.join-btn:hover {
  background-color: #283144;
}

.signed-up {
  font-size: 20px;
  font-weight: 500;
  color: #E6F1F8;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  align-items: center;
}

.social-icons a {
  margin: 0 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
}

.copyright {
  font-size: 12px;
  color: #999;
}


@media (max-width: 1024px) {

  .main-content {
    padding-inline: 16px;
    overflow-x: hidden;
  }

  .main-content h2 {
    font-size: 30px;
  }

  .main-content .description {
    font-size: 16px;
  }

  .hide-on-mobile {
    display: none;
  }

  .email-input {
    font-size: 14px;
  }

  .join-btn {
    padding: 15px;
  }

  .signed-up {
    font-size: 16px;
  }
}