
        .procid {
            padding: 10px 40px;
            font-size: 16px;
            cursor: pointer;
            background: #2009e9;
            color: white;
            border: none;
            border-radius: 18px;
        }

       .slide {
      position: fixed;
      top: 20px;
      right: -400px;
      width: 350px;
      height: 600px;
      background: #000;
      color: grey;
      border-radius: 10px;
      padding: 20px;
      transition: right 0.5s ease;
      z-index: 1000;
      overflow-y: auto;
    }

    .slide.active {
      right: 20px;
    }

    .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 40px;
       border-radius: 10px; /* ✅ Rounded corners */
    }

    .close {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: grey;
    }

    .slide hr {
      border: none;
      border-top: 1px solid grey;
      margin: 10px 0 20px;
    }

    .center-content {
      text-align: center;
      margin-top: 30px;
    }

    .center-logo {
      height: 60px;
      margin-top: 60px;
      margin-bottom: 30px; /* ✅ Space under image */
      border-radius: 10px;
      animation: zoom 1s infinite alternate;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    @keyframes zoom {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.2);
      }
    }

    .progress-container {
      background: #d0eaff;
      border-radius: 10px;
      height: 10px;
      margin: 10px 0;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      width: 0%;
      background: #007bff;
      transition: width 0.5s ease;
    }

    select {
      width: 100%;
      padding: 10px;
      border-radius: 4px;
      margin: 10px 0 15px;
      font-size: 14px;
    }

    .inputs-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 15px;
    }

    .input-wrapper {
      position: relative;
    }

    .input-wrapper input {
      width: 100%;
      padding: 8px 26px 8px 8px;
      border-radius: 5px;
      border: 1px solid #555;
      background: #111;
      color: #eee;
      font-size: 13px;
      box-sizing: border-box;
    }

    .eye-icon {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #888;
      font-size: 14px;
    }

    .submit-btn {
      background: #007bff;
      color: white;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      margin-top: 10px;
    }

    .submit-btn:hover {
      background: #555;
    }

    .support {
      font-size: 13px;
      text-align: center;
      margin-top: 12px;
      margin-bottom: 12px;
    }

    .support a {
      color: #007bff;
      text-decoration: none;
    }