.landing-container {
  display: flex;
  height: 100vh;
  gap: 20px;
}

.video-side, .form-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-side iframe {
  margin-top: 10rem;
  width: 70%;
  height: 50%;
  border: none;
  border-radius: 1rem;
}


/* #videoTrigger {
  position: relative;
  width: 70%;
  height: 0; 
  cursor: pointer;
}

#videoTrigger iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 70%;
  border: none;
} */

.form-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  height: 60%;
  width: 70%;
  max-width: 400px;
  text-align: center;
  border-radius: 6px;
}

.form-box h1 { margin-bottom: 10px; font-size: 1.4rem; }
.form-box p  { margin-bottom: 15px; font-size: 0.9rem; color: #444; }

.form-box input, 
.form-box button {
  width: 80%;
  padding: 10px;
  margin: 10px auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  display: block;
}

.form-box button {
  background: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box button:hover { background: #0056b3; }

/* Responsive */
@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .video-side iframe { width: 90%; height: 250px; }
  .form-box { width: 90%; margin-top: 20px; }
}



