/* General Reset */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

/* Background Video */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  /* transform: translate(-50%, -50%); */
  object-fit: cover;
  filter: brightness(60%);
  pointer-events: none;
}

/* Content */
.content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 15px; /* Add padding for smaller screens */
}

.content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  font-size: 3.5rem; /* Adjust font size */
}

.content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #f8f9fa;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  font-size: 2rem; /* Adjust font size */
}

/* form input { 
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
  width: 100%; /* Full width on smaller screens 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
} */

/* form button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%; /* Full width for small screens 
  max-width: 400px; /* Limit width on larger screens 
  margin: 10px auto 0 auto;
} */

/* Responsive Styles */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem; /* Smaller font for mobile */
  }

  .content p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }

  form input {
    padding: 10px; /* Adjust padding for inputs */
    font-size: 14px;
  }

  form button {
    padding: 8px 16px; /* Adjust padding for buttons */
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8rem; /* Smaller headings for very small screens */
  }

  .content p {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  video {
    object-fit: cover; /* Still fills the viewport */
    width: 100%; /* Adjusts to fit narrower screens */
    height: 100%; /* Adjusts to fit shorter screens */
  }
}
