
.waitlist-form-preview {
  font-family: 'Arial', sans-serif;
  max-width: 300px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
}
  
.waitlist-form-preview input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
}

.waitlist-form-preview textarea.comments-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

.waitlist-form-preview textarea.comments-field:focus {
  border-color: #999;
  outline: none;
}

.waitlist-form-preview button {
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

.waitlist-form-preview .confirmation-message {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid #dddddd;
  color: #333333;
  text-align: center;
  font-size: 14px;
}

.waitlist-container * {
  box-sizing: border-box;
  text-align: center;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  /* Column Styles */
  .column1, .column2 {
    flex: 1;
  }
  
  .column1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
  }
  
  .content {
    max-width: 700px;
  }
  
  .column2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Launching Soon Styles */
  .launching-soon {
    display: inline-block;
    background-color: greenyellow;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .launching-soon span {
    font-size: 15px;
    color: green;
  }
  
  /* Heading Styles */
  h1 {
    font-size: 36px;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  h2 {
    font-size: 30px;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }
  
  /* Subtext Styles */
  .subtext {
    font-size: 16px;
    color: gray;
    margin-bottom: 25px;
  }
  
  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  form input[type="email"] {
    padding: 10px 15px;
    border: 1px solid lightgray;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 10px;
    width: 250px;
  }
  
  form button {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 120px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #333;
  }
  
  /* Confirmation Message Styles */
  .confirmation-message {
    margin-top: 10px;
    font-size: 15px;
    color: gray;
  }

  /* Medium Devices (Tablets, 768px and up) */
@media (max-width: 991px) {
    .container {
      flex-direction: column;
      height: auto;
    }
  
    .column1, .column2 {
      flex: none;
      width: 100%;
    }
  
    .column1 {
      padding: 40px 5%;
    }
  
    .column2 img {
      height: 300px;
      object-fit: cover;
    }
  
    h1 {
      font-size: 32px;
    }
  
    .content {
      max-width: 100%;
    }
  }
  
  /* Small Devices (Landscape Phones, 576px and up) */
  @media (max-width: 767px) {
    .column1 {
      padding: 30px 5%;
    }
  
    h1 {
      font-size: 28px;
    }
  
    form input[type="email"] {
      width: 100%;
    }
  
    form button {
      width: 100%;
      margin-top: 10px;
    }
  }