/* ── ExternalProviderRow — global (component-level CSS) ── */

.login-provider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.google-option {
    width: auto;
    display: flex;
    justify-content: center;
}

.google-signin-shell {
    width: auto;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.google-signin-loading {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #D6DCEB;
    border-radius: 999px;
    background: #F7F9FC;
    color: #5F6B84;
}

.google-signin-host {
    width: auto;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-signin-host.is-hidden {
    display: none;
}

.microsoft-icon {
    display: block;
}

.oauth-icon {
    width: 18px;
    height: 18px;
}

.provider-unavailable-note {
    margin: 0.5rem 0 0 0;
    text-align: center;
    color: #5F6B84;
    font-size: 0.82rem;
    line-height: 1.45;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.dark .google-signin-loading {
    border-color: rgba(121, 134, 203, 0.35);
    background: rgba(49, 57, 84, 0.92);
    color: #D0D6E8;
}

body.dark .provider-unavailable-note {
    color: #D0D6E8;
}



@media (max-width: 640px) {
    .login-provider-row {
        gap: 0.85rem;
    }
}
