body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #491be0ff, #b12525ff);
      background-size: 400% 400%;
      animation: gradientBG 8s ease infinite;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .form-wrapper {
      background: linear-gradient(135deg, #232323, #1e1e1e);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.8),
        0px 5px 15px rgba(255, 255, 255, 0.1) inset;
      width: 100%;
      max-width: 400px;
      text-align: center;
    }

    .form-wrapper h2 {
      color: #ff7eb3;
      margin-bottom: 1.5rem;
      text-shadow: 0px 3px 5px rgba(255, 121, 172, 0.5);
    }

    .form-wrapper input {
      background: linear-gradient(135deg, #e3cbd7, #232323);
      color: #f5f5f5;
      border: 1px solid #444;
      border-radius: 10px;
      font-size: 1rem;
      padding: 10px;
      transition: box-shadow 0.3s ease;
    }

    .form-wrapper input:focus {
      box-shadow: 0px 4px 10px rgba(82, 234, 250, 0.5);
      outline: none;
    }

    .form-wrapper button {
      background: linear-gradient(135deg, #ff758c, #82f9ff);
      color: white;
      border: none;
      border-radius: 15px;
      font-size: 1.1rem;
      font-weight: bold;
      padding: 10px 20px;
      margin-top: 10px;
      transition: transform 0.3s, box-shadow 0.3s ease-in-out;
      box-shadow: 0px 5px 15px rgba(255, 121, 172, 0.6);
      cursor: pointer;
    }

    .form-wrapper button:hover {
      transform: scale(1.05);
      box-shadow: 0px 10px 20px rgba(255, 121, 172, 0.8),
        0px 5px 15px rgba(82, 234, 250, 0.5);
    }

    .form-wrapper .error p {
      color: #ff6b6b;
      font-size: 0.9rem;
    }

    .form-wrapper p a {
      color: #56d6f3;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .form-wrapper p a:hover {
      text-decoration: underline;
      color: #ff7eb3;
    }
 