.form-group {
    display: none;
}

.form-group.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.progress-step.active {
    background-color: var(--primary-blue);
}

.progress-step.completed {
    background-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 24px 0;
    display: none;
}

.checkbox-group.active {
    display: flex;
}

.checkbox-group input {
    margin-right: 10px;
}