/* styles.css */


.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.progress-bar .step {
    width: 30px;
    height: 30px;
    background-color: #d3d3d3;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

.progress-bar .step.active {
    background-color: #5cb85c;
}



.form-step {
    display: none;
}

.form-step.active {
    display: block;
}



label {
    display: block;
    margin: 10px 0 5px;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
    border: none;
    background-color: #5cb85c;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

button.prev-btn {
    background-color: #0275d8;
    margin-right: 10px;
}

button.submit-btn {
    background-color: #5bc0de;
}
