body {
    background: #f5f7fb;
}

.form-wizard-card {
    max-width: 800px;
    margin: 30px auto;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-indicator .step {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 0.9rem;
}

.step-indicator .step::before {
    content: attr(data-step);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    margin-bottom: 5px;
    background-color: #fff;
}

.step-indicator .step.active::before,
.step-indicator .step.completed::before {
    background-color: #0d6efd;
    color: #fff;
}

.step-indicator .step::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}

.step-indicator .step:last-child::after {
    content: none;
}

.step-indicator .step.completed::after {
    background-color: #0d6efd;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-label {
    font-weight: 600;
}

.required {
    color: #dc3545;
}

.error-text {
    font-size: 0.8rem;
}