<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    
    body {
      background-color: #f0f2f5;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    
    .header {
      background-color: #001529;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }
    
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropdown-btn {
      background-color: #1890ff;
      color: #fff;
      padding: 10px 15px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: #fff;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
    }
    
    .dropdown-content a {
      color: #333;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }
    
    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    .dropdown:hover .dropdown-btn {
      background-color: #40a9ff;
    }
    
    .main-content {
      flex-grow: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }
    .menu-icon {
      display: inline-block;
      padding: 8px;
      cursor: pointer;
    }

   .menu-icon img {
      vertical-align: middle;
    }
    .login-container {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 40px;
      width: 100%;
      max-width: 400px;
      text-align: center;
    }
    
    h1 {
      color: #333;
      margin-bottom: 30px;
      font-size: 22px;
    }
    
    .button-container {
      display: flex;
      flex-direction: column;
      justify-content: center; /* Centers the buttons horizontally */
      align-items: center; /* Centers the buttons vertically */
      gap: 20px;
      margin-top: 20px;
    }

    
    .btn {
      padding: 12px 20px;
      font-size: 16px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s;
      font-weight: bold;
      width: 200px; /* You can adjust this value as needed */
      text-align: center;
    }
    
    .btn-primary {
      background-color: #6fa8dc;
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #cfe2f3;
    }


    .btn-secondary {
      background-color: #f0f0f0;
      color: #333;
      border: 1px solid #d9d9d9;
    }
    
    .btn-secondary:hover {
      background-color: #e0e0e0;
    }
    
    .footer {
      text-align: center;
      padding: 20px;
      color: #999;
      background-color: #001529;
      color: #fff;
    }
  </style>
