/* Shared OAuth social sign-in buttons — consistent width and height */

.oauth-social-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.oauth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    height: 44px;
    max-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    position: relative;
}

.oauth-social-btn--google {
    background: #fff;
    border: 1px solid #dadce0;
    padding: 0;
}

.oauth-social-btn--google .oauth-social-btn-face {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    color: #3c4043;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.oauth-social-btn--google .oauth-google-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.oauth-social-btn--google .google-oauth-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.011;
    overflow: hidden;
    cursor: pointer;
}

.oauth-social-btn--google .google-oauth-overlay .g_id_signin,
.oauth-social-btn--google .google-oauth-overlay .google-signin-host {
    width: 100%;
    height: 100%;
    min-height: 44px;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.oauth-social-btn--google .google-oauth-overlay iframe {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    border: 0 !important;
}

.oauth-social-btn--facebook {
    background: #fff;
    border: 1px solid #1877f2;
    color: #1877f2;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.oauth-social-btn--facebook:hover,
.oauth-social-btn--facebook:focus {
    background: #f8f9fa;
    border-color: #166fe5;
    color: #166fe5;
    text-decoration: none;
}

.oauth-social-btn--facebook.disabled,
.oauth-social-btn--facebook:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.oauth-social-btn--facebook .fab {
    font-size: 1rem;
    line-height: 1;
}

.oauth-social-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.8rem;
    text-transform: lowercase;
    margin: 0.75rem 0;
}

.oauth-social-divider::before,
.oauth-social-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dee2e6;
}
