/* ==================== OAUTH STYLES ==================== */

.oauth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.oauth-divider::before,
.oauth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.oauth-divider span {
    font-size: 0.8rem;
    color: var(--text-secondary, #8a93a6);
    font-weight: 600;
}

.btn-google-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary, #e8edf5);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.15s;
}

.btn-google-oauth:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(66, 133, 244, 0.4);
}

.btn-google-oauth:active {
    transform: scale(0.98);
}

.btn-google-oauth svg {
    flex-shrink: 0;
}

.btn-google-oauth.is-loading {
    opacity: 0.7;
    pointer-events: none;
}
