body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: #fff;
    }

    .login-section {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 15px;
    }

    .login-box {
      max-width: 400px;
      width: 100%;
      background: #fff;
      padding: 30px;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .login-box h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .login-box p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #555;
    }

    footer {
      background: #111;
      color: #fff;
      padding: 40px 15px;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: bold;
    }

    .footer-link {
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 5px;
    }

    .footer-link:hover {
      text-decoration: underline;
    }

    .copyright {
      font-size: 12px;
      color: #aaa;
      margin-top: 10px;
    }
    .passError{
      color:red;
    }