.auth-shell .auth-section-card {
    padding: .95rem 1rem;
    box-shadow: none;
}

.auth-shell .auth-section-title {
    font-size: .8rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: .75rem;
}

.auth-shell .auth-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
    margin-bottom: 1rem;
}

.auth-shell .auth-step {
    border: 1px solid #e1e8d7;
    border-radius: .95rem;
    padding: .6rem .75rem;
    background: #f9fbf6;
    cursor: pointer;
    transition: .2s ease;
}

.auth-shell .auth-step.is-active {
    border-color: #8aa26c;
    background: #eef6e6;
    box-shadow: 0 10px 24px rgba(35, 51, 26, 0.08);
}

.auth-shell .auth-step-index {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dfead1;
    color: #365126;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.auth-shell .auth-step-title {
    font-size: .82rem;
    color: #203319;
    font-weight: 600;
    line-height: 1.2;
}

.auth-shell .auth-step-copy {
    color: #708069;
    font-size: .72rem;
    line-height: 1.3;
    margin-top: .1rem;
}

.auth-shell .auth-inline-card {
    border: 1px dashed #d6e1ca;
    border-radius: 0.5rem;
    background: #fbfcf8;
    padding: 1rem;
    margin-bottom: 1rem;
}

.auth-shell .auth-step:disabled {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .auth-shell .auth-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .auth-shell .auth-stepper {
        grid-template-columns: 1fr;
    }
}
