/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Style for the background image */
  .background {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
  }
  
  .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the whole container */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Place behind other elements */
  }
  
  /* Style for the transparent login box */
  .login-box {
    position: absolute;
    top: 50%!important;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7); /* Transparent white */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }

  .header-box {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translate(-50%);
    background-color: rgba(134, 134, 134, 0.7); /* Transparent white */
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    width: 38%;
  }
  .header-box h2 {
    margin-bottom: 20px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
  .header-box p {
    margin-bottom: 5px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .login-box h2 {
    margin-bottom: 20px;
  }
  
  .login-box form input,
  .login-box form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .login-box form button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
  }
  
  .login-box form button:hover {
    background-color: #0056b3;
  }
  