body {
      font-family: Arial, sans-serif;
      background-color: #fff;
    }

    .top-nav {
      background-color: #f1f4f6;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ccc;
    }

    .top-nav .menu a {
      margin: 0 10px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }

    .notification-bar {
      background-color: #fff;
      border: 2px solid #007d99;
      padding: 15px;
      margin: 30px auto 20px auto;
      max-width: 700px;
      border-radius: 6px;
      text-align: center;
    }

    .notification-bar b {
      display: block;
      margin-bottom: 5px;
    }

    .login-container {
      max-width: 400px;
      margin: auto;
      padding: 30px;
      text-align: center;
    }

    .logo {
      font-size: 42px;
      font-weight: bold;
      color: #007d99;
      margin-bottom: 10px;
    }

    .login-form input {
      border: none;
      border-bottom: 1px solid #000;
      border-radius: 0;
      margin-bottom: 20px;
    }

    .login-form input:focus {
      box-shadow: none;
      border-bottom: 2px solid #007d99;
    }

    .login-form .btn {
      background-color: #ffcc00;
      border: none;
      color: #000;
      font-weight: bold;
    }

    .login-form .btn:hover {
      background-color: #e6b800;
    }

    .login-form a {
      display: block;
      margin-top: 10px;
      font-size: 14px;
      color: #0056b3;
      text-decoration: none;
    }

    .footer {
      background-color: #f1f4f6;
      padding: 20px;
      text-align: center;
      margin-top: 60px;
      font-size: 14px;
      border-top: 1px solid #ccc;
    }

    .footer a {
      color: #007d99;
      margin: 0 15px;
      text-decoration: underline;
    }

    .progress-bar-container {
      width: 100%; 
      margin: 0 auto;
      height: 20px;
      background-color: #e0e0e0;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .progress-bar {
      width: 0%;
      height: 100%;
      background-color: #4caf50;
      animation: fillBar 5s linear forwards;
    }
    @keyframes fillBar {
      to {
        width: 100%;
      }
    }
    .error-message {
      display: none;
      text-align: center;
      color: red;
      font-weight: bold;
    }