/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* Container and positioning */
  .container, .overlay {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .login-box {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 35px;
    border-radius: 10px;
    max-width: 450px;
    text-align: center;
  }
  
  /* Text and content styles */
  .login-content h1 {
    color: #5E0044;
    font-size: 26px;
  }
  
  .login-content h2 {
    color: #5E0044;
    font-size: 16px;
    border-bottom: 1px solid black;
    text-align: left;
    margin-bottom: 2px;
  }
  
  .login-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .login-content ul li {
    border-bottom: 1px solid #848484;
  }
  
  .login-content ul li p {
    font-weight: bold;
    margin: 5px 0;
  }
  
  .login-content span {
    color: #7F005C;
  }
  
  .description {
    text-align: justify;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
  }
  
  .branding img {
    max-width: 400px;
    margin: 10px;
  }
  
  /* Form styles */
  form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  form label {
    margin-top: 10px;
    text-align: left;
  }
  
  form input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #848484;
    border-radius: 5px;
  }
  
  form button {
    padding: 10px;
    margin-top: 20px;
    background-color: #7F005C;
    border: solid 1px #C4008E;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #C4008E;
  }
  