.form-control{
    height: 45px;
}



/* Auth */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .progressbar {
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin-bottom: 30px;
  }

  .progressbar li {
    list-style-type: none;
    position: relative;
    text-align: center;
    flex: 1;
    color: #999;
  }

  .progressbar li::before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    background: #dee2e6;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    color: #333;
    font-weight: 600;
  }

  .progressbar li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: #dee2e6;
    top: 18px;
    left: -50%;
    z-index: -1;
  }

  .progressbar li:first-child::after {
    content: none;
  }

  .progressbar li.active {
    color: #0d6efd;
  }

  .progressbar li.active::before {
    background: #0d6efd;
    color: white;
  }

  .progressbar li.active + li::after {
    background: #0d6efd;
  }

  .step {
    display: none;
  }

  .step.active {
    display: block;
  }
