body {
      background-color: #f8f9fa;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      font-family: 'Segoe UI', sans-serif;
    }

    .forgot-card {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      width: 100%;
      max-width: 400px;
    }

    .forgot-card h2 {
      margin-bottom: 20px;
      text-align: center;
      font-size: 1.8rem;
      color: #333;
    }

    .btn-primary {
      background-color: #007bff;
      border: none;
      font-weight: bold;
    }

    .btn-primary:hover {
      background-color: #0056b3;
    }

    .forgot-card p {
      text-align: center;
      margin-top: 15px;
      font-size: 0.9rem;
    }

    .forgot-card a {
      text-decoration: none;
      color: #007bff;
    }

    .forgot-card a:hover {
      text-decoration: underline;
    }