/*====================================================
    SIGNUP WIZARD - layout & step indicator
    Scoped to the signup page only, doesn't touch the
    shared login/signup base styles.
=====================================================*/

.signup-wizard-section{
    min-height: 100vh;
    align-items: flex-start;
    padding: 50px 20px;
}

.signup-wizard-wrap{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/*====================================================
    COMPACT HEADER (same width, shorter height, no
    description line)
=====================================================*/

.rc-signup-header-compact{
    padding: 18px 26px;
}

.rc-signup-header-compact .rc-signup-icon{
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
}

.rc-signup-header-compact .rc-signup-icon i{
    font-size: 24px;
}

.rc-signup-header-compact .rc-signup-content h2{
    font-size: 22px;
    margin-bottom: 0;
}

.rc-signup-header-compact .rc-signup-badge{
    margin-bottom: 6px;
}

@media(max-width: 576px){

    .rc-signup-header-compact{
        padding: 14px 20px;
    }

}

/*====================================================
    STEP INDICATOR
=====================================================*/

.wizard-steps{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 28px 0 26px;
}

.wizard-step{
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: .5;
    transition: .3s;
}

.wizard-step.active,
.wizard-step.completed{
    opacity: 1;
}

.wizard-step-circle{
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--text-light);
    font-size: 18px;
    transition: .3s;
}

.wizard-step.active .wizard-step-circle{
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(108,43,217,.28);
}

.wizard-step.completed .wizard-step-circle{
    background: var(--success);
    border-color: transparent;
    color: #fff;
}

.wizard-step-label{
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.wizard-step-label span{
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-light);
}

.wizard-step-line{
    width: 90px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
}

@media(max-width: 576px){

    .wizard-steps{
        gap: 10px;
    }

    .wizard-step-line{
        width: 36px;
    }

    .wizard-step-label{
        font-size: 13px;
    }

    .wizard-step-circle{
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

}

/*====================================================
    WIZARD CARD
=====================================================*/

.wizard-card{
    background: #fff;
    border-radius: 24px;
    padding: 40px 45px;
    box-shadow: var(--shadow);
}

.wizard-pane{
    display: none;
}

.wizard-pane.active{
    display: block;
    animation: wizardFadeIn .35s ease;
}

@keyframes wizardFadeIn{
    from{
        opacity: 0;
        transform: translateY(10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-pane-title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.wizard-pane-title i{
    color: var(--primary);
}

.wizard-pane-subtitle{
    color: var(--text-light);
    margin-bottom: 26px;
    font-size: 14px;
}

.wizard-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.wizard-next-btn,
.wizard-submit-btn{
    width: auto;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 28px;
}

.wizard-back-btn{
    display: inline-flex;
    align-items: center;
    height: 54px;
    padding: 0 24px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 16px;
    font-weight: 600;
    transition: .3s;
}

.wizard-back-btn:hover{
    border-color: var(--primary);
    color: var(--primary);
    background: var(--secondary);
}

@media(max-width: 768px){

    .wizard-card{
        padding: 28px 22px;
        border-radius: 20px;
    }

    .wizard-actions{
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-next-btn,
    .wizard-submit-btn{
        margin-left: 0;
        width: 100%;
    }

    .wizard-back-btn{
        justify-content: center;
        width: 100%;
    }

}
