    body {
      background-color: #0d0d0d;
      color: #fff;
      font-family: "Poppins", sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }

    .forgot-section {
      background: linear-gradient(135deg, #111, #1a1a1a);
      width: 100%;
      padding: 80px 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .forgot-container {
      max-width: 460px;
      width: 100%;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }

    .forgot-container h2 {
      font-size: 1.9rem;
      font-weight: 600;
      color: #fff;
    }

    .forgot-container h2 span {
      color: #ff6a00;
    }

    .subtitle {
      color: #aaa;
      font-size: 0.95rem;
      margin-bottom: 30px;
    }

    .forgot-box {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 40px 35px;
      box-shadow: 0 0 20px rgba(255, 106, 0, 0.1);
      transition: 0.3s;
    }

    .forgot-box:hover {
      box-shadow: 0 0 25px rgba(255, 106, 0, 0.3);
    }

    .forgot-box h3 {
      color: #fff;
      font-weight: 500;
      margin-bottom: 25px;
      text-align: left;
    }

    .forgot-box h3 i {
      color: #ff6a00;
      margin-right: 10px;
    }

    label {
      font-size: 0.9rem;
      color: #ccc;
      margin-bottom: 5px;
      display: block;
      text-align: left;
    }

    input {
      width: 100%;
      padding: 12px 15px;
      border: none;
      border-radius: 8px;
      background: #1b1b1b;
      color: #fff;
      outline: none;
      margin-bottom: 20px;
      font-size: 0.95rem;
      transition: 0.3s;
    }

    input:focus {
      border: 1px solid #ff6a00;
      box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
    }

    .reset-btn {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 8px;
      background: linear-gradient(90deg, #ff6a00, #ff944d);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .reset-btn:hover {
      transform: scale(1.03);
      box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
    }

    .back-text {
      text-align: center;
      color: #ccc;
      font-size: 0.9rem;
      margin-top: 20px;
    }

    .back-text a {
      color: #ff6a00;
      text-decoration: none;
      font-weight: 500;
    }

    .back-text a:hover {
      text-decoration: underline;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }