
#app {
  padding: 2rem;
}

.containerul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.controls {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btnul {
  padding: 10px 24px;
  border: 1px solid #555;
  background-color: transparent;
  color: #ddd;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btnul:hover {
  background-color: #b8a0e8;
  border-color: #b8a0e8;
  color: #000;
}

.btnul:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btnul:disabled:hover {
  background-color: transparent;
  border-color: #555;
  color: #ddd;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 600px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #555;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step.active .step-circle {
  background-color: #b8a0e8;
  border-color: #b8a0e8;
  color: #000;
}

.step-label {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.step.active .step-label {
  color: #aaa;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #444;
  margin: 0;
  position: relative;
  z-index: 0;
  align-self: center;
  min-width: 40px;
}

/* loading */

 #f9w3p7 {
            width: 100%;
            max-width: 42rem;
        }

        #jn4kx1 {
            background-color: transparent;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #h8r5v2 {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        #t3m9c4 {
            font-size: 1.875rem;
            font-weight: bold;
            color: #b8a0e8;
        }

        #b6l2w8 {
            color: #b8a0e8;
            font-size: 0.875rem;
        }

        #s7y4k9 {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        #p5z1d3 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #u2q8v6 {
            font-size: 1.475rem;
            font-weight: 500;
            color: #d4d2d7;
        }

        #n4g7f5 {
            font-size: 0.875rem;
            font-weight: bold;
            color: #b8a0e8;
        }

        #c9x3m1 {
            width: 100%;
            height: 1rem;
            background-color: #e2e8f0;
            border-radius: 9999px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        #r8h2j6 {
            height: 100%;
            background: linear-gradient(to right, #b8a0e8, #927cbe);
            border-radius: 9999px;
            transition: width 100ms linear;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            width: 0%;
            position: relative;
        }

        #e5l7a4 {
            height: 100%;
            width: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
            border-radius: 9999px;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

       

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 640px) {
            #jn4kx1 {
                padding: 1.5rem;
            }

            #t3m9c4 {
                font-size: 1.5rem;
            }
        }
