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

  .step-circle {
   border-radius:10px;
    padding:20px;
    background-color: #fff;
    border: 2px solid black;
    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: red;
    z-index: -1;
  }
  
  #multi-step-form{
      overflow-x: hidden;
  }