:root {
  --primary-color: #6171ff;
  --badge-bg-color: #e9ebff;
  --button-bg-color: #000;
  --button-text-color: #fff;
  --text-color: #6c757d;
  --headline-color: #000;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Left Column Styling */
.left-column {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.content {
  max-width: 700px;
}

/* Launching Soon Badge */
.badge {
  display: inline-block;
  background-color: var(--badge-bg-color);
  color: var(--primary-color);
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Main Headline */
h1 {
  font-size: 32px;
  color: var(--headline-color);
  margin-bottom: 15px;
}

/* Sub Headline */
h2 {
  font-size: 23px;
  color: var(--headline-color);
  margin-bottom: 15px;
}

/* Subheadline */
.subheadline {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 25px;
}

/* Email Form */
#waitlist-form {
  display: flex;
  flex-direction: column;
}

#waitlist-form input {
  padding: 10px 15px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 10px;
}

#waitlist-form input::placeholder {
  color: #a9a9a9;
}

#waitlist-form input:focus,
#waitlist-form button:focus {
  outline: 2px solid #6171ff;
  outline-offset: 2px;
}

/* Join Waitlist Button */
#waitlist-form button {
  padding: 10px 15px;
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

#waitlist-form button:hover {
  background-color: #333; /* Darken the button on hover */
}

/* Confirmation Message */
#confirmation-message {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-color);
}

.hidden {
  display: none;
}

/* Right Column Styling */
.right-column {
  flex: 1;
}

.illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .right-column {
    display: none; /* Hide image on smaller screens if desired */
  }

  .left-column {
    padding: 0 10%;
  }

  .content {
    max-width: 100%;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  .badge {
    font-size: 12px;
  }

  .subheadline {
    font-size: 14px;
  }

  #waitlist-form input,
  #waitlist-form button {
    width: 100%;
  }

  #waitlist-form button {
    align-self: stretch;
  }
}
