/* ================= WIZARD WRAPPER ================= */
.wizard-container {
    max-width: 900px;
    margin: auto;
}

/* ================= PROGRESS BAR ================= */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.wizard-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #999;
    flex: 1;
    position: relative;
}

.wizard-progress .step i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: #777;
    z-index: 2;
}

.wizard-progress .step.active i {
    background: #2a7fc0;
    color: #fff;
}

.wizard-progress .step.active span {
    color: #2a7fc0;
    font-weight: 600;
}

/* connecting line */
.wizard-progress .line {
    flex: 1;
    height: 3px;
    background: #ddd;
    margin: 0 -10px;
    position: relative;
    top: -18px;
    z-index: 1;
}

/* ================= STEPS ================= */
.wizard-step {
    display: none;
    animation: fade 0.3s ease-in-out;
}

.wizard-step.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= INPUT GRID CLEANUP ================= */
.frow,
.frow3 {
    display: flex;
    gap: 15px;
}

.fg {
    flex: 1;
    margin-bottom: 15px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* BUTTON */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.btn-next {
    background: #2a7fc0;
    color: white;
}

.btn-prev {
    background: #ccc;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* BUTTON FIX */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-next,
.btn-prev,
.btn-submit {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-next {
    background: #2a7fc0;
    color: white;
}

.btn-prev {
    background: #ddd;
}

.btn-submit {
    background: green;
    color: white;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wizard-progress .step {
    text-align: center;
    flex: 1;
    position: relative;
}

.wizard-progress .line {
    flex: 1;
    height: 3px;
    background: #ddd;
}

.wizard-progress .step.active i {
    background: #2a7fc0;
    color: #fff;
}
