#container {
  max-width: 900px;
  padding-top: 20px;
}

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

    .step-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #deb27e;
      border: 1px solid #deb27e;
      color: #ffffff;
      font-size: 25px;
      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% - 25px);
      height: 5px;
      background-color: #deb27e;
      z-index: -1;
    }
    
    #multi-step-form{
		overflow-x: hidden;
	}