body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure the video is behind other content */
  }
  
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    object-position: center; /* Centers the video */
  }
  
  .login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 300px; /* Adjust width as needed */
  }
  
  .login-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .login-container form {
    display: flex;
    flex-direction: column;
  }
  
  .login-container input {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .login-container button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #ADD8E6; /* Light blue color */
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  .login-container button:hover {
    background: #87CEEB; /* Slightly darker light blue on hover */
  }
  