body {
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #0084AD;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  header img {
    height: 64px;
    margin-left: 20px;
  }

.login-page {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
  }
  
  .login-header h2 {
    color: #0084AD;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .login-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .login-content label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .login-content input {
    width: 100%;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px; 
}

  
  .login-button {
    background-color: #0084AD;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .login-button:hover {
    background-color: #006b8e;
  }
  
  footer {
    background-color: #9c9c9c;
    padding: 10px;
    text-align: center;
    color: #333;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  