
    @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --line-border-empty: #717274;
    --line-border-fill: #42e2ee;
  }

* {
    box-sizing: border-box;
    }


    #regForm {
    background-color: #f1f1f1;;
    margin: 100px auto;
    font-family: Poppins;
    padding: 40px;
    width: 80%;
    min-width: 300px;
    }

    h1 {
    text-align: center;  
    }

    input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Poppins;
    border: 1px solid #aaaaaa;
    }

    select{
        padding: 10px;
        width: 100%;
        font-size: 17px;
        font-family: Poppins;
        border: 1px solid #aaaaaa;
    }

    /* Mark input boxes that gets an error on validation: */
    input.invalid {
    background-color: #ffdddd;
    /* border: 1px solid #ff8181; */
    }

    /* Hide all steps by default: */
    .tab {
    display: none;
    }

    button {
    /* background-color: #019493; */
    background-color: #1e3c58;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Poppins;
    cursor: pointer;
    }

    button:hover {
    opacity: 0.8;
    }

    #prevBtn {
    background-color: #bbbbbb;
    }

    /* Make circles that indicate the steps of the form: */

    .progress-steps{
      text-align: center;
      margin: 40px 0;
      display: flex;
      justify-content: space-evenly;
    }

    /* .step {
    height: 25px;
    width: 25px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    align-items: center;
    color: #006279 !important;
    } */

    
.step{
  position: relative;
  font-size: 14px;
  font-weight: 500;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  text-align: center;
  transition: all .3s ease-in;
}

.step .dot{
  height: 25px;
    width: 25px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.7;
    align-items: center;
    color: #1e3c58 !important;
}

    .step.active {
    opacity: 1;
    color: #1e3c58 !important;
    }

    .step.active .dot{
      background-color: #1e3c58;
      opacity: 1;
      color: #fff !important;
    }

    /* Mark the steps that are finished and valid: */
    .step.finish {
    /* background-color: #019493; */
    color: #1e3c58 !important;
    opacity: .8;
    }

    .step.finish .dot{
      background-color: #1e3c58;
      color: #fff !important;
    }

    /* Progress Steps */
    
/* .progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    max-width: 100%;
    width: 350px;
    position: relative;
    transition: 0.7s ease;
  }
  
  .progress-container::before {
    content: '';
    position: absolute;
    background-color: var(--line-border-empty);
    height: 4px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    transition: 0.7s ease;
  }
  
  .progress {
    position: absolute;
    background-color: var(--line-border-fill);
    height: 4px;
    width: 0%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    transition: 0.7s ease;
  }
  
  .circle {
    background-color: #006279;
    color: var(--line-border-empty);
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--line-border-empty);
    border-radius: 50%;
    transition-delay: 0.5s;
  }
  
  .circle.active {
    border-color: var(--line-border-fill);
    color: var(--line-border-fill);
  }
  
  .btn {
    background-color: var(--line-border-fill);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 30px;
    margin: 5px;
    cursor: pointer;
    font-size: 0.8rem;
  }
  
  .btn:active {
    transform: scale(0.97);
  }
  
  .btn:focus {
    border: none;
  }
  
  .btn:disabled {
    background-color: var(--line-border-empty);
    cursor: not-allowed;
  } */

  input[name="birthday"]::-webkit-calendar-picker-indicator{
    display: none;
}

@media only screen and (max-width: 769px){
  #regForm{
    width: 100% !important;
  }
}
