

    .open-btn {
      padding: 10px 20px;
      background-color: #0000;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }

    .popup {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease forwards;
      z-index: 999;
    }

    .popup.show {
      display: flex;
    }

    .popup-content {
      background: white;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: scale(0.8);
      animation: scaleIn 0.3s ease forwards;
    }

    .popup-content h2 {
      margin-top: 0;
      margin-bottom: 20px;
      text-align: center;
    }
html {
  scroll-behavior: smooth;
}
    .popup-content input {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
    }

    .popup-content button {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      background-color: #0000;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
    }

    .popup-content .close-btn {
      background-color: #ddd;
      color: #333;
    }

    @keyframes scaleIn {
      to {
        transform: scale(1);
      }
    }

    @keyframes fadeIn {
      from {
        background-color: rgba(0, 0, 0, 0);
      }
      to {
        background-color: rgba(0, 0, 0, 0.5);
      }
    }