body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4; /* Optional: Set a background color for the body */
  }
  
  .container {
    width: 350px; /* Adjusted width */
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #fff; /* Optional: Set a background color for the container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle box shadow */
  }
  
  .container img {
    width: 100px;
    margin-bottom: 20px;
  }
  
  .container h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .container p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  .container .checkbox {
    margin-bottom: 15px;
  }
  
  .container .checkbox label {
    cursor: pointer;
  }
  
  .container a {
    color: #3498db;
    text-decoration: none;
  }
  
  .container button {
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .container .home-link {
    margin-top: 15px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 500px) {
    .container {
      width: 90%;
    }
  }
.bgvideo{
    position: absolute;
    right:0;
    bottom: 0;
    z-index: -1;
} 
@media (min-aspect-ratio: 16/9)
{
    .bgvideo{
        width:100%;
        height:auto;
    }
}
@media (max-aspect-ratio: 16/9)
{
    .bgvideo{
        width:auto;
        height:100%;
    }
}