.sbc-auth-body {
    min-height: 100vh;
    background: var(--sbc-light, #f4f7fb);
}

.sbc-auth-shell {
    display: grid;
    grid-template-columns: minmax(320px, 42%) 1fr;
    min-height: 100vh;
}

.sbc-auth-aside {
    position: relative;
    padding: 2.5rem;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(8, 26, 46, 0.92) 0%, rgba(15, 43, 74, 0.88) 55%, rgba(15, 43, 74, 0.75) 100%),
        url('../images/hero-b2b-trade.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sbc-auth-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.12), transparent 40%);
    pointer-events: none;
}

.sbc-auth-brand {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff !important;
}

.sbc-auth-aside-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.sbc-auth-aside h2 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sbc-auth-aside p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 420px;
}

.sbc-auth-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.sbc-auth-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.sbc-auth-benefits i {
    color: var(--sbc-accent-light, #fbbf24);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.sbc-auth-aside-footer {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.55);
}

.sbc-auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.sbc-auth-main-inner {
    width: 100%;
    max-width: 520px;
}

.sbc-auth-header {
    margin-bottom: 2rem;
}

.sbc-auth-header h1 {
    font-weight: 800;
    color: var(--sbc-primary-dark, #081a2e);
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.sbc-auth-header p {
    color: #64748b;
    margin: 0;
}

.sbc-auth-card {
    background: #fff;
    border: 1px solid var(--sbc-border, #e2e8f0);
    border-radius: var(--sbc-radius, 16px);
    padding: 2rem;
    box-shadow: var(--sbc-shadow, 0 8px 30px rgba(8, 26, 46, 0.08));
}

.sbc-auth-card .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--sbc-primary, #0f2b4a);
}

.sbc-auth-card .form-control,
.sbc-auth-card .form-select {
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    border-color: var(--sbc-border, #e2e8f0);
}

.sbc-auth-card .form-control:focus,
.sbc-auth-card .form-select:focus {
    border-color: var(--sbc-accent, #f59e0b);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
}

.sbc-auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.sbc-auth-divider::before,
.sbc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sbc-border, #e2e8f0);
}

.sbc-auth-footer-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.sbc-auth-footer-link a {
    color: var(--sbc-primary, #0f2b4a);
    font-weight: 700;
    text-decoration: none;
}

.sbc-auth-footer-link a:hover {
    color: var(--sbc-accent, #f59e0b);
}

.sbc-auth-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sbc-auth-step {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #e2e8f0;
    transition: background 0.3s ease;
}

.sbc-auth-step.active {
    background: linear-gradient(90deg, var(--sbc-accent, #f59e0b), var(--sbc-accent-light, #fbbf24));
}

.sbc-auth-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sbc-primary, #0f2b4a);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sbc-border, #e2e8f0);
}

.sbc-auth-pending-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    color: var(--sbc-accent, #f59e0b);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

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

    .sbc-auth-aside {
        min-height: auto;
        padding: 1.75rem;
    }

    .sbc-auth-aside-content {
        padding: 1rem 0;
    }

    .sbc-auth-aside h2 {
        font-size: 1.5rem;
    }

    .sbc-auth-benefits {
        display: none;
    }
}
