.auth-signup-wizard {
    overflow: hidden;
}

.auth-signup-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-signup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.auth-signup-step-badge {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(12, 74, 110, 0.08);
    color: #7f8c97;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.auth-signup-step-label {
    color: #6f7d88;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.auth-signup-step-connector {
    flex: 1;
    height: 2px;
    background: rgba(12, 74, 110, 0.12);
    margin-bottom: 26px;
    transition: background 0.2s ease;
}

.auth-signup-step.is-active .auth-signup-step-badge,
.auth-signup-step.is-done .auth-signup-step-badge {
    background: #0c4a6e;
    color: #fff;
}

.auth-signup-step.is-active .auth-signup-step-label,
.auth-signup-step.is-done .auth-signup-step-label {
    color: #0c4a6e;
}

.auth-signup-step-connector.is-done {
    background: #0c4a6e;
}

.auth-signup-slides {
    display: flex;
    width: 200%;
    transition: transform 0.28s ease;
}

.auth-signup-slide {
    width: 50%;
    flex-shrink: 0;
    padding-right: 10px;
}

.auth-signup-section-title {
    margin: 0 0 16px;
    color: #0c4a6e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-signup-nav {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.auth-signup-nav > * {
    flex: 1;
}

.auth-signup-prev {
    border: 1px solid rgba(12, 74, 110, 0.28);
    color: #0c4a6e;
    background: #fff;
}

.auth-signup-prev:hover,
.auth-signup-prev:focus {
    border-color: rgba(12, 74, 110, 0.4);
    color: #0c4a6e;
    background: rgba(12, 74, 110, 0.04);
}

@media (max-width: 767.98px) {
    .auth-signup-step-label {
        font-size: 0.66rem;
    }

    .auth-signup-slide {
        padding-right: 0;
    }

    .auth-signup-nav {
        flex-direction: column;
    }
}
