.login-container {
    margin: 5vh auto; /* Center the container horizontally */
    padding: 20px;
    background-color: #EBB42A;
    /*border: 1px solid #ddd;*/
    border-radius: 4px;
    width: auto; /* Set width to 90% of the container */
    max-width: 600px; /* Limit the maximum width */
  }
  
  .login-container h1 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-size: 20px;
  }
  
  .login-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .login-container ol {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .login-container ol li {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .login-container ul {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .login-container ul li {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .login-container a {
    color: #000000;
    text-decoration: none;
  }
  
  .login-container a:hover {
    text-decoration: underline;
  }
  
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%; /* Full width input fields */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensure padding is included in the width */
  }
  
  .login-container input[type="submit"] {
    width: 30%; /* Adjust the width of the submit button */
    padding: 8px; /* Reduce the padding of the submit button */
    background-color: #5cb85c;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px; /* Add some margin to separate from the input fields */
  }