body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  * {
    box-sizing: border-box; /* Ensures padding is included in the width/height calculations */
  }
  
  .container {
    display: flex;
    flex-direction: row;
    height: 100%;
  }
  
  .login-section {
    background-color: #000000;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
  
  .login-box {
    width: 100%;
    max-width: 400px;
    color: white;
  }

  .login-box a {
    color: white;
  }

  .login-box a:visited {
    color: white;
  }
  

  .login-box a:hover {
    color: rgb(166, 166, 166);
  }

  .login-box h2 {
    margin-bottom: 2rem;
  }
  
  .login-box form {
    display: flex;
    flex-direction: column;
  }
  
  input {
    padding: 15px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
  }
  
  button {
    padding: 15px;
    background-color: #282986;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #181952;
  }
  
  .info-section {
    position: relative;
    flex-basis: 50%;
    width: 50%;
    height: 100%;
    display: flex; /* Using flexbox to align children */
    justify-content: center; /* Centering horizontally */
    align-items: center; /* Centering vertically */
    overflow: hidden;
  }
  .info-box p {
    font-size: 19px;
  }
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure the video covers the entire area without distortion */
    z-index: -1;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust opacity here */
    z-index: 1;
  }
  
  .info-box {
    z-index: 2;
    color: white;
    padding: 2em;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
    /* Remove any width or height properties that could interfere with centering */
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    
    .login-section, .info-section {
      flex-basis: 100%;
      width: 100%; /* To ensure it fills the screen on mobile */
    }
  
    .info-box {
      width: 80%; /* Adjust width as necessary for mobile */
    }
  }
  