.step {
    display: none;
}

.btn {
    overflow: auto;
    gap: 20px;
}

/* General button styling */
.btn  {
    
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    margin-top: 5px;
}

#btn  {
    opacity: 0.8;
}


    body {
    font-family: 'Signika','Open Sans', sans-serif;
}
#signUpForm {
    max-width: 2300px;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
    font-size: 16px !important;
    color: #333;
}
#signUpForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}
#signUpForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#signUpForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#signUpForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}
#signUpForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}
#signUpForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}
#signUpForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}
#signUpForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#signUpForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}
#signUpForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}
#signUpForm .form-header .stepIndicator:last-child:after {
    display: none;
}

#signUpForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}
#signUpForm input.invalid, 
#signUpForm textarea.invalid,
#signUpForm select.invalid {
    border: 1px solid #ffaba5;
}
#signUpForm input[type="checkbox"].invalid {
    border: 1px solid red;
}

#signUpForm .step {
    display: none;
}
#signUpForm .form-footer {
    overflow: auto;
    gap: 20px;
}
#signUpForm .btn button {
    background-color: #009688;
    border: 1px solid #009688 !important;
    color: #ffffff;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;

}


#signUpForm .btn button:hover {
    opacity: 0.8;
}


.btn-next{
    background-color: #fff;
    color: #009688;

}
