.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

#next-step {
    margin-top: 10px;
    display: inline-block;
}

button[type="submit"] {
    display: none;
}

.form-step:last-child button[type="submit"] {
    display: inline-block;
}
#progress-bar-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 10px;
    background-color: #4caf50;
    transition: width 0.4s ease;
}
