.social-auth-shell {
    width: min(1040px, 100%);
    margin: 28px auto 48px;
}

.social-auth-heading {
    max-width: 700px;
    margin-inline: auto;
}

.social-auth-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(39, 94, 254, .1);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.social-auth-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -.035em;
}

.social-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.social-auth-grid > .card {
    height: 100%;
}

.social-auth-grid .card-body {
    height: 100%;
    padding: clamp(22px, 4vw, 32px);
}

.social-customer-card {
    border-color: rgba(39, 94, 254, .24);
    background:
        radial-gradient(circle at top right, rgba(111, 66, 232, .11), transparent 36%),
        #fff;
}

.social-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.social-section-title h2 {
    margin: 0;
    font-size: 1.25rem;
}

.social-section-title p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.social-section-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #6f42e8);
    font-weight: 900;
}

.admin-section-icon {
    background: linear-gradient(135deg, #182233, #475467);
}

.social-buttons {
    display: grid;
    gap: 12px;
}

.social-btn {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    font: inherit;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.social-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(24, 34, 51, .09);
}

.social-btn-google {
    color: #202124;
    background: #fff;
}

.social-btn-google:hover {
    border-color: #aeb4bd;
}

.social-btn-apple {
    color: #fff;
    background: #050505;
    border-color: #050505;
}

.social-btn-apple:hover {
    color: #fff;
    background: #202020;
}

.social-btn-disabled {
    color: #98a2b3;
    background: #f2f4f7;
    cursor: not-allowed;
    box-shadow: none;
}

.social-btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.social-logo {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
}

.social-logo-google {
    color: #4285f4;
    background: #fff;
    border: 1px solid #eaecf0;
}

.social-logo-apple {
    color: currentColor;
    font-size: 1rem;
}

.social-security-note {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #475467;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    font-size: .82rem;
}

.provider-register-box {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: .9rem;
}

.provider-register-box a {
    font-weight: 750;
}

.oauth-linked-account {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 13px 15px;
    border: 1px solid #bfd3ff;
    border-radius: 12px;
    background: var(--info-bg);
}

.oauth-linked-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--primary);
    font-weight: 850;
}

.oauth-linked-account strong,
.oauth-linked-account span {
    display: block;
}

.oauth-linked-account span {
    color: var(--muted);
    font-size: .86rem;
}

@media (max-width: 820px) {
    .social-auth-grid {
        grid-template-columns: 1fr;
    }
}
