.btn-3d {
  padding: 10px 40px;
  background: #7554a3;
  color: #fff;
  border: 2px solid #0af;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  box-shadow: 0 0 15px #0af;
  animation: pulse 2s infinite;
}

.btn-3d:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #0af, 0 0 60px #0af;
}

.btn-3d:active {
  transform: translateY(2px);
  box-shadow: 0 0 10px #0af inset;
}

.btn-3d-2 {
  padding: 10px 40px;
  background: #1c033f;
  color: #fff;
  border: 2px solid #0af;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  box-shadow: 0 0 15px #0af;
  animation: pulse2 2s infinite;
}

.btn-3d-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #0af, 0 0 60px #0af;
}

.btn-3d-2:active {
  transform: translateY(2px);
  box-shadow: 0 0 10px #0af inset;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 10px #0af;
  }
  50% {
    box-shadow: 0 0 25px #0af;
  }
  100% {
    box-shadow: 0 0 10px #0af;
  }
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 10px #0af;
  }
  50% {
    box-shadow: 0 0 25px #0af;
  }
  100% {
    box-shadow: 0 0 10px #0af;
  }
}


.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}
.step-container-2 {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer; /* Added cursor pointer */
}

.step2-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer; /* Added cursor pointer */
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #007bff;
    z-index: -1;
}

.step2-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #007bff;
    z-index: -1;
}

#multi-step-form{
    overflow-x: hidden;
}

.signature-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 420px;
    background-color: #f8f9fa;
}

.signature-canvas {
    width: 100%;
    max-width: 400px;
    height: 100px;
    border: 2px solid #ced4da;
    border-radius: 5px;
}

.card-custom {
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #ffffff;
}

.btn-3d span{
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.btn-3d small{
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.btn-3d-2 span{
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.btn-3d-2 small{
    display: block;
    font-size: 14px;
    margin-top: 5px;
}
