/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #555;
  }
  
  form p {
    margin-top: 15px;
  }
  
  form a {
    color: #333;
    text-decoration: none;
  }
  
  form a:hover {
    text-decoration: underline;
  }
  
  .hidden {
    display: none;
  }