  body {
    background: #f7f9fb;
    font-family: "Roboto", sans-serif;
  }

  .password-reset-container {
    max-width: 400px;
    margin: 60px auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

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

  .password-reset-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .password-reset-container input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .password-reset-container button {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
  }

  .password-reset-container button:hover {
    background: #333;
  }