    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color:#a31f36 ;
      position: sticky;
      top: 0;
    }
    .contact-info {
      margin-top: auto;
      font-size: 12px;
      color: white;
      padding: 20px 40px;
      padding-left: 90px;
    }
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .header {
      position: fixed;
      top: 50px;
      left: 0;
      width: 100%;
      height: var(--header-height);
      background-color: #e6e7e8;
      color: #fff;
      margin: 0;
      padding: 0;
      border: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1500px;
      margin: 0 auto;
      width: 100%;
      padding: 15px 20px;
    }

    .logo {
      font-size: 25px;
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 70px;
      margin-left: 45px;
      display: block;
    }

    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f5f5f5;
    }

    .login-container {
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .login-container h2 {
      margin-bottom: 20px;
      text-align: center;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    form label {
      margin: 10px 0 5px;
    }

    form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    form button {
      margin-top: 20px;
      padding: 10px;
      background-color: #2a77d4;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    #errorMsg {
      color: red;
      margin-bottom: 15px;
      text-align: center;
    }
    
    footer {
      text-align: center;
      background-color: #f5f5f5;
    }

    .popup {
      display: none;
      position: fixed;
      top: 80%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      padding: 50px 20px;
      border: 1px solid #ccc;
      border-radius: 1px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    .popup button {
      position: absolute;
      top: 0;
      right:20px;
    }