.waitlist {
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 12rem;
  padding: 4rem 0;
}

.waitlist .container {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 3rem;
}

.waitlist .container .left {
  width: 40%;
}

.waitlist .container .left h2 {
  font-size: 2.2rem;
}

.waitlist .container .right {
  width: 60%;
  padding-right: 5vw;
}

.waitlist .container .right p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.waitlist .container .right .form {
  padding: 1rem 0;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.waitlist .container .right .form .input {
  padding: 0.8rem 1rem;
  background-color: rgb(244, 248, 253);
  border-radius: 12px;
  border: 2px solid rgb(172, 179, 189);
}

.waitlist .container .right .form .input input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}

.waitlist .container .right .form .button-bg:hover {
  color: white !important;
  border: 2px solid white !important;
}

@media only screen and (max-width: 900px) {
  .waitlist .container {
    flex-direction: column;
    gap: 2rem;
  }

  .waitlist .container .left {
    width: 100%;
  }

  .waitlist .container .left h2 {
    font-size: 1.8rem;
  }

  .waitlist .container .right {
    width: 100%;
    padding-right: 0vw;
  }

  .waitlist .container .right p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .waitlist .container .right .form {
    padding: 1rem 0;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 1rem;
  }
}

@media only screen and (max-width: 560px) {
  .waitlist .container {
    flex-direction: column;
    gap: 1rem;
  }

  .waitlist .container .left h2 {
    font-size: 1.6rem;
  }

  .waitlist .container .right .form {
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .waitlist .container .right .form .input {
    width: 100%;
  }

  .waitlist .container .right .form button {
    width: max-content;
  }
}
