body {
    margin: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background-color: rgb(0, 187, 255);
  }
  
  .container {
    text-align: center;
  }
  
  .progress-container {
    width: 500px;
    display: flex;
    position: relative;
    justify-content: space-between;
  }
  
  .progress-bar-back {
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: lightgray;
    border: none;
    z-index: -1;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .progress-bar-front {
    position: absolute;
    height: 4px;
    width: 0%;
    background-color: green;
    border: none;
    z-index: -1;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s linear width;
  }
  
  .step {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid lightgray;
    color: lightgray;
  }
  
  .step.checked {
    color: green;
    border-color: green;
    transition: all 0.4s linear;
    transition-delay: 0.3s;
  }
  
  .step.checked small {
    position: absolute;
    bottom: -20px;
    font-family: cursive;
  }
  
  .btn {
    background-color: slateblue;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 70px 10px 0;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .btn:hover {
    opacity: 0.9;
  }
  
  .btn:active {
    transform: scale(0.97);
  }
  
  .btn:disabled {
    background-color: lightgray;
  }
  
  @media (max-width: 500px) {
    .progress-container {
      width: 90vw;
    }
  }