/* Make the page fill the entire screen */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  /* Video background styling */
  #background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures the video covers the screen */
    z-index: -2;       /* Place it behind everything */
  }
  
  /* Full-screen overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75); /* Adjust this for darker or lighter overlay */
    z-index: -1; /* Just in front of the video, behind the content */
  }
  
  /* Container for your text and form */
  .container {
    position: relative; /* on top of overlay */
    z-index: 0;         /* or 1, just needs to be above -1 */
    
    /* Center container vertically & horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    /* Make container fill the viewport height 
       so the content is centered on the page */
    height: 100vh;
    text-align: center;
  }
  
  .logo {
    width: 150px;        /* Adjust as needed */
    margin-bottom: 1rem; /* Space below the logo */
  }
  

  /* Headings and text */
  h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    margin: 5px 0;
  }
  
  /* Form styling */
  form {
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 15px;
    align-items: center;
  }
  
  input {
    padding: 15px;
    border: none;
    border-radius: 50px;
    width: 250px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  button {
    padding: 15px 15px;
    border: none;
    border-radius: 50px;
    background: black;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    width: 150px;
    text-align: center;
  }
  
  button:hover {
    background: darkslategray;
  }
  